/* ==========================================================================
   Panda Bubbles — site stylesheet
   Tokens follow docs/03-brand.md: red, black, white. Mobile-first, no framework.
   ========================================================================== */

:root {
  --red:       #E8202A;
  --red-deep:  #B0141C;
  --ink:       #0F0D0D;
  --white:     #FFFFFF;
  --paper:     #FFF6F2;
  --muted:     #6C6260;
  --line:      #EDE3DF;
  --line-soft: #F5EDEA;
  --tint:      #FDECEC;
  --ink-08:    rgba(15, 13, 13, .08);
  --on-dark-muted: #CFC6C2;

  --display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --bangla:  "Hind Siliguri", "Nirmala UI", var(--body);
  --zh:      "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;

  --gut: clamp(1.25rem, 5vw, 2.5rem);
  --max: 74rem;
  --r: 22px;
  --r-sm: 14px;
  --shadow: 0 18px 50px rgba(15, 13, 13, .16);

  color-scheme: light;
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--body); font-size: 1rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0 0 1em; }
a { color: var(--red-deep); }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 800; }
.bn { font-family: var(--bangla); }
.zh { font-family: var(--zh); letter-spacing: .12em; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 10px; text-decoration: none; font-weight: 700;
}
.skip:focus { top: 1rem; }
:where(a, button, summary):focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

/* Values still to be confirmed (see data/site.json) — dotted so they read as provisional. */
.tbc { text-decoration: underline dotted; text-underline-offset: .2em; text-decoration-color: var(--red); }
a.tbc-link { pointer-events: none; opacity: .75; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  padding: .8rem 1.45rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { font-size: .92rem; padding: .55rem 1.05rem; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--red-deep); border-color: #fff; }
.btn-white:hover { background: var(--paper); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline-white:hover { background: #fff; color: var(--red-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; padding-block: .6rem; }
.brand { display: block; margin-right: auto; }
.brand img { height: 46px; width: auto; }
.head-cta { order: 2; }
.nav { order: 3; flex: 1 1 100%; display: flex; gap: .15rem; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut); }
.nav::-webkit-scrollbar { display: none; }
@media (max-width: 55.99rem) { .nav { -webkit-mask-image: linear-gradient(to right, #000 88%, transparent); mask-image: linear-gradient(to right, #000 88%, transparent); padding-right: 3rem; } }
.nav a {
  font-size: .9rem; font-weight: 700; text-decoration: none; color: var(--muted);
  padding: .45rem .75rem; border-radius: 999px; white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--ink-08); }
@media (min-width: 56rem) {
  .site-header .wrap { flex-wrap: nowrap; padding-block: .75rem; }
  .brand img { height: 52px; }
  .nav { order: 2; flex: 0 1 auto; margin-inline: 0; padding-inline: 0; margin-left: auto; }
  .head-cta { order: 3; }
}

/* --- announcement --------------------------------------------------------- */
.announce { background: var(--ink); color: #fff; font-size: .9rem; }
.announce .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .6rem; padding-block: .6rem; }
.announce .label { color: var(--red); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; }
.announce .sep { opacity: .4; }
.announce a { color: #fff; font-weight: 700; margin-left: auto; }

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--paper); padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2.5rem, 7vw, 4.5rem); }
.hero::before {
  content: ""; position: absolute; right: -10%; top: -20%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at center, rgba(232,32,42,.16), transparent 62%); pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
@media (min-width: 60rem) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.eyebrow {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red-deep);
  background: var(--tint); padding: .45rem .9rem; border-radius: 999px; margin: 0 0 1.2rem;
}
.eyebrow .bn { text-transform: none; letter-spacing: 0; font-weight: 700; font-size: .95rem; }
.eyebrow .bn::before { content: "·"; margin-right: .5rem; opacity: .5; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }
.hero h1 { font-size: clamp(2.6rem, 7.2vw, 4.6rem); letter-spacing: -0.02em; line-height: 1.02; }
.hero .lede { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--muted); max-width: 40ch; margin: 1.2rem 0 1.6rem; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; margin-top: 1.8rem; max-width: 40rem; }
.facts li { position: relative; padding-left: 1.1rem; font-size: .92rem; color: var(--muted); line-height: 1.4; }
.facts li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.facts strong { color: var(--ink); }
@media (max-width: 26rem) { .facts { grid-template-columns: 1fr; } }

.hero-art { position: relative; padding-bottom: 8%; }
.hero-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-mascot { position: absolute; left: -6%; bottom: 0; width: 40%; max-width: 260px; filter: drop-shadow(0 12px 18px rgba(15,13,13,.25)); }
@media (min-width: 60rem) { .hero-art { padding-bottom: 0; padding-left: 8%; } .hero-mascot { left: -2%; bottom: -6%; } }

/* --- three-script band ---------------------------------------------------- */
.scripts-band { background: var(--red); color: #fff; }
.scripts-band .wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 2rem; padding-block: 1rem; }
.scripts-band span { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 3vw, 1.5rem); }
.scripts-band .bn { font-family: var(--bangla); font-weight: 700; }
.scripts-band .zh { font-family: var(--zh); font-weight: 500; }
.scripts-band .desc { margin-left: auto; font-family: var(--body); font-weight: 700; font-size: .95rem; opacity: .85; letter-spacing: .04em; }

/* --- sections ------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
.section-head { max-width: 52ch; margin-bottom: clamp(1.75rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 5.5vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: .8rem 0 0; }
.kicker { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red-deep); margin: 0 0 .8rem; }
.dark .kicker { color: var(--red); }
.kicker .bn { text-transform: none; letter-spacing: .02em; font-size: 1rem; }
.dark { background: var(--ink); color: #fff; }
.dark .section-head p { color: var(--on-dark-muted); }

/* --- drinks tiles --------------------------------------------------------- */
.tiles { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 36rem) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 56rem) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.tile-media { aspect-ratio: 1; overflow: hidden; background: var(--paper); }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover .tile-media img { transform: scale(1.04); }
.tile-body { padding: 1.1rem 1.15rem 1.25rem; }
.tile-body h3 { font-size: 1.25rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem .6rem; }
.tile-body h3 .bn { font-size: .95rem; font-weight: 600; color: var(--muted); }
.tile-body p { color: var(--muted); font-size: .93rem; margin: .55rem 0 0; }
/* Phones: photo beside the words, so four drinks fit in one screen's scroll instead of four. */
@media (max-width: 35.99rem) {
  .tile { flex-direction: row; }
  .tile-media { flex: 0 0 38%; aspect-ratio: auto; align-self: stretch; }
  .tile-media img { height: 100%; }
  .tile-body { padding: .9rem 1rem 1rem; }
  .tile-body h3 { font-size: 1.15rem; }
  .tile-body p { font-size: .88rem; }
}

.custom { margin-top: clamp(1.5rem, 4vw, 2.5rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.25rem, 4vw, 2rem); display: grid; gap: 1rem; }
@media (min-width: 56rem) {
  .custom { grid-template-columns: 1fr 1.6fr; grid-template-areas: "head sugar" "head ice" "sizes sizes" "sizes2 sizes2"; align-items: center; column-gap: 2.5rem; row-gap: .8rem; }
  .custom-head { grid-area: head; }
  .custom-row.sugar { grid-area: sugar; }
  .custom-row.ice { grid-area: ice; }
  .custom-toppings { grid-area: sizes; border-top: 1px solid var(--line); padding-top: .9rem; margin-top: .4rem; }
  .custom-sizes { grid-area: sizes2; }
}
.custom-head h3 { font-size: 1.5rem; }
.custom-head p { color: var(--muted); margin: .3rem 0 0; }
.custom-row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; }
.custom-label { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red-deep); min-width: 3.2rem; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chips li { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-weight: 700; font-size: .9rem; }
.custom-toppings, .custom-sizes { color: var(--muted); font-size: .95rem; margin: 0; }
.custom-toppings strong { color: var(--ink); }

/* --- the standard --------------------------------------------------------- */
.std-grid { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .std-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60rem) { .std-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.std { background: #171414; border: 1px solid #2E2626; border-radius: var(--r); padding: 1.5rem 1.4rem 1.6rem; }
.std .ico { width: 34px; height: 34px; color: var(--red); margin-bottom: .9rem; }
.std h3 { font-size: 1.28rem; color: #fff; }
.std p { color: var(--on-dark-muted); font-size: .95rem; margin: .5rem 0 0; }

.promise { margin: clamp(1.5rem, 4vw, 2.5rem) 0 0; padding: 1.4rem 1.6rem; border: 1px solid #2E2626; border-left: 4px solid var(--red); border-radius: var(--r-sm); background: #171414; font-family: var(--display); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 600; color: #fff; display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1.2rem; }
.promise .kicker { margin: 0; }

/* --- seasons -------------------------------------------------------------- */
.seasons { background: var(--paper); border-block: 1px solid var(--line); }
.season-grid { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .season-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .season-grid { grid-template-columns: repeat(4, 1fr); } }
.season { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.3rem 1.5rem; border-top: 4px solid var(--red); }
.season h3 { font-size: 1.3rem; display: flex; align-items: baseline; gap: .6rem; }
.season h3 .bn { font-size: 1rem; font-weight: 600; color: var(--muted); }
.season p { color: var(--muted); font-size: .95rem; margin: .5rem 0 0; }

/* --- outlets -------------------------------------------------------------- */
.outlets { background: var(--white); }
.outlets-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 60rem) { .outlets-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; } }
.map-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(.75rem, 2.5vw, 1.5rem); }
.bd-map { width: 100%; height: auto; max-height: 600px; display: block; font-family: var(--body); }
.bd-map .land { fill: #FBE4E4; stroke: #C4534F; stroke-width: 1.6; stroke-linejoin: round; }
.bd-map .pin { stroke: #fff; stroke-width: 3; }
.bd-map .pin-open { fill: var(--ink); }
.bd-map .pin-opening { fill: var(--red); }
.bd-map .pin-soon { fill: #fff; stroke: var(--red); stroke-width: 3.5; }
.bd-map .pin-ring { fill: rgba(232,32,42,.2); }
.bd-map .pin-hq { fill: var(--ink); stroke: #fff; stroke-width: 3; }
.bd-map .leader { stroke: var(--red-deep); stroke-width: 2; }
.bd-map .chip { fill: #fff; stroke: #D9C9C4; stroke-width: 1.2; }
.bd-map .lbl { font-weight: 800; fill: var(--ink); }
.bd-map .lbl-opening { fill: var(--red-deep); }
.bd-map .lbl-hq { font-weight: 700; fill: var(--ink); }
.map-key { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; margin-top: 1rem; font-size: .82rem; font-weight: 700; color: var(--muted); }
.map-key li { display: flex; align-items: center; gap: .45rem; }
.key-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.key-open { background: var(--ink); }
.key-opening { background: var(--red); }
.key-soon { background: #fff; border: 2.5px solid var(--red); box-sizing: border-box; }
.key-hq { background: var(--ink); border-radius: 2px; transform: rotate(45deg); width: 10px; height: 10px; }
.outlet-list { display: grid; gap: 1rem; }
@media (min-width: 40rem) { .outlet-list { grid-template-columns: 1fr 1fr; } }
.outlet { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.outlet-opening { grid-column: 1 / -1; background: #fff; border-color: var(--red); box-shadow: var(--shadow); }
@media (min-width: 40rem) { .outlet-opening { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "h h" "s s" "a hrs" "n hrs" "b hrs"; column-gap: 2rem; align-items: start; } .outlet-opening h3 { grid-area: h; } .outlet-opening .status { grid-area: s; justify-self: start; } .outlet-opening .addr { grid-area: a; } .outlet-opening .hours { grid-area: hrs; } .outlet-opening .small { grid-area: n; } .outlet-opening .btn { grid-area: b; } }
.outlet h3 { font-size: 1.45rem; display: flex; align-items: baseline; gap: .6rem; }
.outlet h3 .bn { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.outlet .addr { font-family: var(--display); font-size: 1.15rem; line-height: 1.3; margin: 0; }
.outlet p { margin: 0; color: var(--muted); font-size: .95rem; }
.outlet .btn { align-self: flex-start; margin-top: .3rem; }
.outlet .hours li { border-color: var(--line); }
.status { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.status-open { background: var(--ink); color: #fff; }
.status-opening { background: var(--red); color: #fff; }
.status-soon { background: transparent; color: var(--red-deep); border: 1.5px solid var(--red); }
.outlet-soon p { font-size: .9rem; }

/* --- contact -------------------------------------------------------------- */
.contact { background: var(--paper); border-top: 1px solid var(--line); }
.contact .vcard { background: #fff; }
.contact-list li { padding: .3rem 0; font-size: .98rem; }
.contact-list a { font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.foot-explore { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid #2E2626; }
.foot-col .soon { color: var(--on-dark-muted); font-size: .8rem; margin-left: .35rem; }

/* --- bulk orders ---------------------------------------------------------- */
.bulk { background: var(--white); padding: clamp(2.5rem, 7vw, 4.5rem) 0; border-top: 1px solid var(--line); }
.bulk-grid { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 56rem) { .bulk-grid { grid-template-columns: 1.4fr 1fr; } .bulk-grid .btn-row { justify-content: flex-end; } }
.bulk h2 { font-size: clamp(1.7rem, 4.5vw, 2.4rem); }
.bulk p { color: var(--muted); max-width: 52ch; margin: .6rem 0 0; }

/* --- press ---------------------------------------------------------------- */
.press h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 2.4rem 0 1rem; }
.press-grid { display: grid; gap: 2rem; }
@media (min-width: 56rem) { .press-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }
.press .boiler { font-size: 1.08rem; max-width: 60ch; }
.scripts-line { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 1rem 0 0; }
.scripts-line .bn { font-family: var(--bangla); font-weight: 700; }
.scripts-line .zh { font-family: var(--zh); font-weight: 500; }
.downloads li { display: flex; flex-direction: column; gap: .1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.downloads li:first-child { border-top: 1px solid var(--line); }
.downloads a { font-weight: 800; }
.downloads span { color: var(--muted); font-size: .88rem; }
.swatches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 40rem) { .swatches { grid-template-columns: repeat(4, 1fr); } }
.swatches li { display: flex; flex-direction: column; gap: .2rem; font-size: .95rem; }
.swatches .swatch { display: block; aspect-ratio: 5 / 3; border-radius: var(--r-sm); border: 1px solid var(--line); margin-bottom: .5rem; }
.swatches code { color: var(--muted); background: none; padding: 0; font-size: .85rem; }
.fonts li, .rules li { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.fonts li { display: flex; gap: 1rem; align-items: baseline; }
.fonts .role { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; min-width: 6rem; }
.fonts b { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.rules { list-style: disc; padding-left: 1.2rem; }
.logo-demo { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 48rem) { .logo-demo { grid-template-columns: repeat(3, 1fr); } }
.logo-demo figure { margin: 0; border-radius: var(--r); padding: 2rem; display: grid; place-items: center; gap: 1rem; border: 1px solid var(--line); }
.logo-demo img { width: 70%; }
.logo-demo figcaption { font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.logo-demo .on-red { background: var(--red); }
.logo-demo .on-black { background: var(--ink); }
.logo-demo .on-red figcaption, .logo-demo .on-black figcaption { color: rgba(255,255,255,.75); }

/* --- story ---------------------------------------------------------------- */
.story-grid { display: grid; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 56rem) { .story-grid { grid-template-columns: .85fr 1.15fr; } }
.story-photo { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.prose p { font-size: 1.08rem; color: var(--muted); }
.prose p:first-child { font-size: clamp(1.2rem, 2.6vw, 1.45rem); color: var(--ink); font-family: var(--display); font-weight: 600; line-height: 1.3; }
.prose p:last-child { color: var(--ink); font-weight: 700; margin-bottom: 0; }

/* --- panda ---------------------------------------------------------------- */
.panda { background: var(--paper); overflow: hidden; }
.panda-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 56rem) { .panda-grid { grid-template-columns: 1.1fr .9fr; } }
.points { display: grid; gap: 1.1rem; }
.points li { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 1.1rem 1.2rem; }
.points .ico { width: 30px; height: 30px; color: var(--red); flex: none; margin-top: .15rem; }
.points h3 { font-size: 1.15rem; }
.points p { color: var(--muted); font-size: .95rem; margin: .3rem 0 0; }
.panda-art { position: relative; display: grid; place-items: center; padding: 1rem 0; }
.panda-art::before { content: ""; position: absolute; width: min(78%, 420px); aspect-ratio: 1; border-radius: 50%; background: var(--red); opacity: .92; }
.panda-art img { position: relative; height: min(60vw, 520px); width: auto; filter: drop-shadow(0 16px 24px rgba(15,13,13,.22)); }

/* --- gallery -------------------------------------------------------------- */
.gallery-section { padding: 0 0 clamp(3.5rem, 9vw, 6.5rem); }
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 72rem) { .gallery { grid-template-columns: repeat(6, 1fr); } }
.gallery figure { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--paper); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* --- visit ---------------------------------------------------------------- */
.visit-grid { display: grid; gap: 1rem; }
@media (min-width: 48rem) { .visit-grid { grid-template-columns: repeat(3, 1fr); } }
.vcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.vcard h3 { font-family: var(--body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red-deep); font-weight: 800; }
.vcard .big { font-family: var(--display); font-size: 1.35rem; line-height: 1.25; margin: 0; }
.vcard .small { color: var(--muted); font-size: .88rem; margin: 0; }
.vcard .btn { align-self: flex-start; margin-top: auto; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours li:last-child { border-bottom: 0; }
.hours .days { color: var(--muted); }
.hours .time { font-weight: 700; white-space: nowrap; }
.contact li { padding: .3rem 0; font-size: .98rem; }
.contact a { font-weight: 700; text-decoration: none; }
.contact a:hover { text-decoration: underline; }

/* --- careers -------------------------------------------------------------- */
.careers { background: var(--red); color: #fff; }
.careers .kicker { color: #fff; opacity: .85; }
.careers h2 { font-size: clamp(2rem, 5.5vw, 3rem); }
.careers .lede { font-size: 1.12rem; max-width: 50ch; margin: 1rem 0 1.4rem; }
.careers .lede strong { color: #fff; }
.careers-grid { max-width: 56rem; }
.ticks { display: grid; gap: .5rem; margin-bottom: 1.6rem; }
.ticks li { position: relative; padding-left: 1.7rem; font-weight: 600; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 900; }

/* --- faq ------------------------------------------------------------------ */
.faq-wrap { max-width: 54rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 0; font-family: var(--display); font-size: 1.15rem; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--red); flex: none; transition: transform .2s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 0 0 1.1rem; max-width: 62ch; }

/* --- follow --------------------------------------------------------------- */
.follow { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(2.5rem, 7vw, 4rem) 0; text-align: center; }
.follow h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); max-width: 26ch; margin: 0 auto 1.4rem; }
.follow .btn-row { justify-content: center; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #fff; padding: clamp(3rem, 7vw, 4.5rem) 0 1.75rem; }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 40rem) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }
.foot-brand img { width: 220px; }
.scripts { display: flex; flex-wrap: wrap; gap: .3rem 1rem; margin: 1.1rem 0 .4rem; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.scripts .bn { font-family: var(--bangla); font-weight: 700; }
.scripts .zh { font-family: var(--zh); font-weight: 500; }
.foot-desc { color: var(--on-dark-muted); font-size: .92rem; margin: 0; }
.foot-col h3 { font-family: var(--body); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 800; margin-bottom: .8rem; }
.foot-col p { font-size: .95rem; margin: 0 0 .6rem; }
.foot-col .hours li { border-color: #2E2626; }
.foot-col .hours .days { color: var(--on-dark-muted); }
.foot-col .links li { padding: .22rem 0; font-size: .95rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-note { color: var(--on-dark-muted); font-size: .85rem; margin-top: .8rem; }
.map-link { font-weight: 700; }
.foot-meta {
  border-top: 1px solid #2E2626; margin-top: 2.5rem; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: var(--on-dark-muted);
}
.foot-meta a { color: var(--on-dark-muted); }

/* --- inner pages ---------------------------------------------------------- */
.page-head { background: var(--paper); padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2rem, 6vw, 3rem); }
.page-head h1 { font-size: clamp(2.4rem, 6.5vw, 4rem); }
.page-head .lede { color: var(--muted); font-size: 1.1rem; max-width: 56ch; margin: 1rem 0 1.5rem; }
.notfound .wrap { text-align: center; }
.notfound img { height: 220px; margin: 0 auto 1rem; }
.notfound .btn-row { justify-content: center; }
.jd-section { padding-top: clamp(2rem, 6vw, 3.5rem); }
.jd { max-width: 54rem; }
.jd h2 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); color: var(--red-deep); margin: 2.2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--red); }
.jd h2:first-child { margin-top: 0; }
.jd h3 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.jd p { margin: 0 0 .6rem; }
.jd ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1rem; }
.jd li { margin: .35rem 0; }
.jd hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.back { margin-top: 2.5rem; font-weight: 700; }

/* --- credits -------------------------------------------------------------- */
.credits { max-width: 54rem; }
.credits table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.credits th { text-align: left; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: .5rem .6rem; border-bottom: 1px solid var(--line); }
.credits td { padding: .55rem .6rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.credits .tw { overflow-x: auto; }
.credits code { font-size: .85em; color: var(--muted); }

/* --- print ---------------------------------------------------------------- */
@media print {
  .site-header, .announce, .follow, .btn, .gallery-section { display: none !important; }
  body { color: #000; }
  .dark, .careers { background: #fff !important; color: #000 !important; }
  .std { border-color: #ccc; }
}
