/* =====================================================================
   LoloBuy Spreadsheet — warm red-panda design system
   Distinct from sibling agent-hub sites: cream canvas, amber→ember
   gradient, rounded "bubbly" cards, leaf-teal secondary accent.
   ===================================================================== */

:root {
  /* brand — pulled from the LoloBuy flat logo */
  --ember: #e8502a;       /* "Lolo" red-orange */
  --ember-deep: #c93c18;
  --amber: #f5a623;       /* "Buy" gold */
  --amber-soft: #ffce6b;
  --grad-warm: linear-gradient(100deg, #e8502a 0%, #f5862a 45%, #f5a623 100%);
  --grad-warm-soft: linear-gradient(135deg, #fff1e2 0%, #ffe7cf 100%);

  /* secondary accent — leaf teal, keeps the palette off the orange-only competitors */
  --leaf: #1fa98f;
  --leaf-deep: #0f7a66;
  --leaf-soft: #d7f3ec;

  /* canvas */
  --cream: #fff8f0;
  --cream-2: #fff3e6;
  --paper: #ffffff;
  --ink: #2c2018;        /* warm near-black */
  --ink-2: #6b5d52;      /* muted brown-grey */
  --line: #f0e3d4;       /* hairline on cream */

  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 28px;
  --shadow-sm: 0 4px 14px rgba(201, 102, 40, .08);
  --shadow: 0 14px 40px rgba(201, 92, 40, .12);
  --shadow-lg: 0 28px 70px rgba(201, 92, 40, .18);
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .68, 0, 1.0);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 14% 8%, rgba(245, 166, 35, .10), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(31, 169, 143, .08), transparent 38%),
    radial-gradient(rgba(232, 80, 42, .045) 1.4px, transparent 1.4px);
  background-size: auto, auto, 26px 26px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ember-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

h1, h2, h3 { font-family: "Baloo 2", "Nunito", system-ui, sans-serif; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 1.16rem; color: var(--ink-2); }

/* ---------- accents ---------- */
.tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ember-deep);
  background: #fff;
  border: 1.5px solid #ffd9b8;
  padding: .42em .95em; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tag.leaf { color: var(--leaf-deep); border-color: #b9ebe0; }
.gradient-text {
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: "Baloo 2", "Nunito", sans-serif; font-weight: 700; font-size: 1.02rem;
  padding: .82em 1.5em; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: 0 12px 26px rgba(232, 80, 42, .34); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(232, 80, 42, .42); text-decoration: none; }
.btn-ghost { background: #fff; color: var(--ember-deep); border: 1.5px solid #ffd2ad; }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); text-decoration: none; }
.btn-leaf { background: var(--leaf); color: #fff; box-shadow: 0 12px 26px rgba(31, 169, 143, .3); }
.btn-leaf:hover { transform: translateY(-3px); text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 240, .82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.2rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand img { height: 38px; width: auto; }
.brand b { font-family: "Baloo 2", sans-serif; font-size: 1.18rem; color: var(--ink); }
.brand b span { color: var(--leaf-deep); font-weight: 700; }
.nav-links { display: flex; gap: .35rem; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--ink); font-weight: 700; font-size: .96rem;
  padding: .5em .9em; border-radius: 999px; transition: background .2s, color .2s;
}
.nav-links a:hover { background: #fff; color: var(--ember-deep); text-decoration: none; }
.nav-links a.active { background: var(--grad-warm-soft); color: var(--ember-deep); }
.nav-links a.cta { background: var(--grad-warm); color: #fff; }
.nav-toggle { display: none; background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: .4em .6em; font-size: 1.2rem; cursor: pointer; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { max-width: 34ch; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-meta { display: flex; gap: 1.6rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-meta .stat b { font-family: "Baloo 2", sans-serif; font-size: 1.7rem; color: var(--ember-deep); display: block; }
.hero-meta .stat span { font-size: .85rem; color: var(--ink-2); font-weight: 700; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-blob {
  position: absolute; inset: -8% -4%; z-index: 0;
  background: var(--grad-warm); border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(2px); opacity: .14;
  animation: blob 14s var(--ease) infinite alternate;
}
@keyframes blob { to { border-radius: 56% 44% 38% 62% / 44% 58% 42% 56%; transform: rotate(8deg) scale(1.04); } }
.hero-card {
  position: relative; z-index: 1; background: var(--paper); border-radius: var(--radius-l);
  box-shadow: var(--shadow-lg); padding: 1.8rem; width: 100%; max-width: 380px;
  border: 1px solid #fff;
}
.hero-card .mascot { width: 132px; margin: -3.4rem auto .4rem; filter: drop-shadow(0 12px 18px rgba(201, 92, 40, .25)); }
.hero-card h3 { text-align: center; margin-bottom: 1rem; }
.platform-row { display: flex; justify-content: center; gap: .7rem; flex-wrap: wrap; }
.platform-row .chip {
  display: flex; align-items: center; gap: .4rem; background: var(--cream);
  border: 1px solid var(--line); border-radius: 999px; padding: .4em .8em;
  font-weight: 700; font-size: .82rem;
}
.platform-row .chip img { height: 18px; width: 18px; }

/* brand platform badges — pure CSS, no asset dependency */
.pmark {
  display: inline-grid; place-items: center; flex: none;
  width: 20px; height: 20px; border-radius: 6px;
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: #fff;
  font-size: .7rem; line-height: 1;
}
.pmark.lg { width: 34px; height: 34px; border-radius: 10px; font-size: 1.15rem; }
.pmark.taobao { background: #ff5000; }
.pmark.weidian { background: #e5322d; }
.pmark.p1688 { background: #ff6a00; font-size: .56rem; letter-spacing: .02em; }
.pmark.lg.p1688 { font-size: .82rem; }
.pmark.tmall { background: #f50f23; }
.pmark.jd { background: #d52b2b; }
.pmark.yupoo { background: #00a0e9; }

/* ---------- banner hero (homepage) — image as background, compact height ---------- */
.hero-banner {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(380px, 38vw, 520px);
  padding: clamp(1.2rem, 2.6vw, 2rem) 0;
  background-image:
    linear-gradient(94deg, rgba(255,248,240,.97) 0%, rgba(255,248,240,.9) 30%, rgba(255,248,240,.5) 48%, rgba(255,249,242,.1) 66%, rgba(255,249,242,0) 82%),
    url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}
.hero-banner .container { position: relative; z-index: 1; width: 100%; }
.hero-banner-inner { max-width: 680px; }
.hero-banner-inner h1 { margin-bottom: .25em; }
.hero-banner-inner .lead { max-width: 560px; margin-bottom: 1.1rem; }   /* ~half width → 2 lines */
.hero-banner .hero-cta { margin-top: 1.1rem; }
.hero-banner .hero-meta { margin-top: 1.3rem; }
.hero-sources { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; margin-top: 1.3rem; }
.hero-sources .lbl { font-weight: 800; font-size: .82rem; color: var(--ink-2); margin-right: .2rem; }
.hero-sources .chip {
  display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.9);
  border: 1px solid var(--line); border-radius: 999px; padding: .28em .65em; font-weight: 700; font-size: .78rem;
}
@media (max-width: 760px) {
  .hero-banner {
    background-position: 76% center;
    background-image:
      linear-gradient(180deg, rgba(255,248,240,.95) 0%, rgba(255,248,240,.86) 60%, rgba(255,248,240,.8) 100%),
      url('/assets/img/hero-bg.jpg');
  }
  .hero-banner-inner .lead { max-width: 100%; }
}

/* ---------- search bar (routes to w2cspreadsheet.com) ---------- */
.lolo-search {
  display: flex; align-items: center; gap: .5rem; width: 100%; max-width: 540px;
  background: #fff; border: 2px solid #ffd9b8; border-radius: 999px;
  padding: .42rem .42rem .42rem 1.1rem; box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
}
.lolo-search:focus-within { border-color: var(--amber); box-shadow: 0 16px 40px rgba(232, 80, 42, .2); }
.lolo-search .ico { font-size: 1.1rem; flex: none; opacity: .7; }
.lolo-search input {
  flex: 1 1 auto; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: "Nunito", sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--ink);
  padding: .5rem 0;
}
.lolo-search input::placeholder { color: #b7a999; }
.lolo-search button { flex: none; padding: .7em 1.3em; }
.search-note { font-size: .85rem; color: var(--ink-2); margin: .7rem 0 0; }
.search-note b { color: var(--ember-deep); }

/* ---------- section frame ---------- */
section.block { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head .tag { margin-bottom: 1rem; }
.tinted { background:
    linear-gradient(180deg, transparent, rgba(255, 241, 226, .6) 18%, rgba(255, 241, 226, .6) 82%, transparent);
}
.leaf-tinted { background: linear-gradient(180deg, transparent, rgba(215, 243, 236, .5) 18%, rgba(215, 243, 236, .5) 82%, transparent); }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid #fff;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1rem; background: var(--grad-warm-soft); color: var(--ember-deep);
}
.card.leaf .ico { background: var(--leaf-soft); color: var(--leaf-deep); }
.card h3 { margin-bottom: .4rem; }
.card p { margin-bottom: 0; font-size: .96rem; }

/* numbered step card */
.step { position: relative; padding-top: 2.2rem; }
.step .num {
  position: absolute; top: -18px; left: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: #fff; font-size: 1.15rem;
  background: var(--grad-warm); box-shadow: 0 8px 18px rgba(232, 80, 42, .35);
}

/* ---------- spreadsheet / category table ---------- */
.cat-table { background: var(--paper); border-radius: var(--radius-l); box-shadow: var(--shadow); overflow: hidden; border: 1px solid #fff; }
.cat-table table { width: 100%; border-collapse: collapse; }
.cat-table th, .cat-table td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.cat-table thead th { background: var(--grad-warm-soft); color: var(--ember-deep); font-family: "Baloo 2", sans-serif; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; }
.cat-table tbody tr:hover { background: var(--cream-2); }
.cat-table td .cat-name { font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: .6rem; }
.cat-table td a.cat-name { text-decoration: none; transition: color .18s; }
.cat-table td a.cat-name:hover { color: var(--ember-deep); text-decoration: none; }
.cat-table td a.cat-name:hover .emoji { transform: scale(1.12); }
.cat-table td a.cat-name .emoji { transition: transform .18s; }
.cat-table td .cat-name .emoji { font-size: 1.3rem; }
.cat-table td.muted { color: var(--ink-2); font-size: .92rem; }
.cat-table .go { white-space: nowrap; font-weight: 800; color: var(--leaf-deep); }
.cat-table .go::after { content: " →"; }

.note {
  display: flex; gap: .8rem; align-items: flex-start; background: var(--leaf-soft);
  border: 1px solid #b9ebe0; border-radius: var(--radius); padding: 1.1rem 1.3rem;
  color: var(--leaf-deep); font-weight: 600; font-size: .95rem;
}
.note .i { font-size: 1.3rem; line-height: 1; }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split .media { background: var(--grad-warm-soft); border-radius: var(--radius-l); padding: 2.4rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.split .media img { width: min(220px, 70%); filter: drop-shadow(0 16px 22px rgba(201, 92, 40, .22)); }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--ink-2); font-weight: 600; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: var(--leaf); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

/* ---------- value stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.stat-band .stat-card { background: var(--paper); border-radius: var(--radius); padding: 1.6rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid #fff; }
.stat-band .stat-card .big { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 2.2rem; line-height: 1; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-band .stat-card .lbl { font-weight: 700; color: var(--ink); margin-top: .5rem; }
.stat-band .stat-card .sub { font-size: .88rem; color: var(--ink-2); margin-top: .2rem; }

/* ---------- image + text flow timeline (图文) ---------- */
.flow { position: relative; }
.flow-step { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; margin-bottom: 3rem; }
.flow-step:last-child { margin-bottom: 0; }
.flow-step.rev .flow-text { order: 2; }
.flow-step.rev .flow-img { order: 1; }
.flow-text .step-num {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  font-family: "Baloo 2", sans-serif; font-weight: 800; color: #fff; font-size: 1.2rem;
  background: var(--grad-warm); box-shadow: 0 8px 18px rgba(232, 80, 42, .35); margin-bottom: .9rem;
}
.flow-step.leaf .flow-text .step-num { background: var(--leaf); box-shadow: 0 8px 18px rgba(31, 169, 143, .32); }
.flow-text h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.flow-text p { margin-bottom: .8rem; }
.flow-text .mini { list-style: none; padding: 0; margin: 0; }
.flow-text .mini li { position: relative; padding-left: 1.6rem; margin-bottom: .45rem; font-size: .95rem; color: var(--ink-2); font-weight: 600; }
.flow-text .mini li::before { content: "›"; position: absolute; left: .3rem; top: -1px; color: var(--ember); font-weight: 800; font-size: 1.1rem; }

/* image slot — shows real /assets/img/how/step-N.png when present, dashed placeholder when missing */
.flow-img { margin: 0; }
.flow-img img { width: 100%; border-radius: var(--radius-l); box-shadow: var(--shadow); border: 1px solid #fff; display: block; }
.flow-img .ph { display: none; }
.flow-img figcaption { font-size: .82rem; color: var(--ink-2); margin-top: .6rem; text-align: center; }
.flow-img.missing img { display: none; }
.flow-img.missing .ph {
  display: grid; place-items: center; gap: .6rem; aspect-ratio: 4 / 3;
  background: var(--grad-warm-soft); border: 2px dashed #f3b27a; border-radius: var(--radius-l);
  color: var(--ember-deep); text-align: center; padding: 1.4rem;
}
.flow-step.leaf .flow-img.missing .ph { background: var(--leaf-soft); border-color: #8fdccb; color: var(--leaf-deep); }
.flow-img.missing .ph .pic { font-size: 2.4rem; opacity: .8; }
.flow-img.missing .ph .cap { font-weight: 700; font-size: .92rem; line-height: 1.4; max-width: 30ch; }
.flow-img.missing .ph .tip { font-size: .76rem; opacity: .7; font-weight: 600; }

@media (max-width: 900px) {
  .stat-band { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 1fr; gap: 1.2rem; }
  .flow-step.rev .flow-text { order: 1; }
  .flow-step.rev .flow-img { order: 2; }
}

/* ---------- faq ---------- */
.faq-item { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 1rem; border: 1px solid #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.2rem 1.4rem; font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.06rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--ember); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 1.4rem 1.3rem; color: var(--ink-2); }
.faq-item .a p:last-child { margin-bottom: 0; }

/* ---------- official quote ---------- */
.quote {
  position: relative; background: var(--paper); border-left: 5px solid var(--amber);
  border-radius: var(--radius); padding: 1.6rem 1.8rem 1.6rem 2.2rem; box-shadow: var(--shadow-sm);
  font-size: 1.12rem; line-height: 1.6; color: var(--ink); max-width: 72ch; margin: 0 auto 2.4rem;
}
.quote .mark { position: absolute; top: -.2rem; left: .7rem; font-family: "Baloo 2", sans-serif; font-size: 2.6rem; color: var(--amber-soft); line-height: 1; }
.quote cite { display: block; margin-top: .9rem; font-style: normal; font-weight: 800; color: var(--ember-deep); font-size: .9rem; }

/* ---------- guide sub-nav + divider ---------- */
.guide-nav { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.guide-divider { display: flex; align-items: center; gap: 1rem; margin: 1rem 0 0; color: var(--ink-2); }
.guide-divider::before, .guide-divider::after { content: ""; flex: 1; height: 2px; background: var(--line); border-radius: 2px; }

/* ---------- news ---------- */
.news-list { display: grid; gap: 1.1rem; max-width: 880px; margin-inline: auto; }
.news-item {
  display: grid; grid-template-columns: 92px 1fr; gap: 1.3rem; align-items: start;
  background: var(--paper); border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.news-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-date { text-align: center; border-right: 1px solid var(--line); padding-right: 1rem; }
.news-date .d { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--ember-deep); line-height: 1; }
.news-date .m { font-size: .78rem; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: .04em; }
.news-date .y { font-size: .74rem; color: var(--ink-2); }
.news-badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .25em .7em; border-radius: 999px; margin-bottom: .5rem; }
.news-badge.event { background: #ffe2cf; color: var(--ember-deep); }
.news-badge.policy { background: #ffd9d6; color: #b3261e; }
.news-badge.update { background: var(--leaf-soft); color: var(--leaf-deep); }
.news-item h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.news-item p { font-size: .94rem; margin-bottom: .6rem; }
.news-item .read { font-weight: 800; color: var(--leaf-deep); font-size: .9rem; }
.news-item .read::after { content: " ↗"; }
@media (max-width: 560px) {
  .news-item { grid-template-columns: 1fr; gap: .6rem; }
  .news-date { display: flex; gap: .4rem; align-items: baseline; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 .6rem; text-align: left; }
  .news-date .d { font-size: 1.2rem; }
}

/* ---------- callout band ---------- */
.band { background: var(--grad-warm); border-radius: var(--radius-l); color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .92); max-width: 52ch; margin-inline: auto; }
.band .btn-ghost { background: #fff; color: var(--ember-deep); border: 0; }
.band .paw { position: absolute; font-size: 8rem; opacity: .12; }
.band .paw.a { top: -1rem; left: 1rem; transform: rotate(-18deg); }
.band .paw.b { bottom: -2rem; right: 1.5rem; transform: rotate(14deg); }

/* ---------- footer ---------- */
.site-footer { background: #2c2018; color: #d9cabb; margin-top: 3rem; padding: 3rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand b { color: #fff; }
.site-footer .brand b span { color: var(--amber-soft); }
.site-footer p { color: #ad9c8c; font-size: .92rem; }
.site-footer h4 { font-family: "Baloo 2", sans-serif; color: #fff; font-size: 1rem; margin: 0 0 .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { color: #c9b9a9; font-size: .92rem; }
.site-footer ul a:hover { color: var(--amber-soft); }
.footer-bottom { border-top: 1px solid #4a3a2c; margin-top: 2.2rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #9a8978; }
.disclaimer { background: #251a13; border-radius: var(--radius); padding: 1rem 1.3rem; font-size: .82rem; color: #9a8978; margin-top: 1.6rem; line-height: 1.6; }

/* ---------- breadcrumb ---------- */
.crumb { font-size: .88rem; color: var(--ink-2); padding-top: 1.4rem; }
.crumb a { font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { order: -1; }
  .split { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 1rem 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7em 1em; }
  .nav-toggle { display: block; margin-left: auto; }
}
@media (max-width: 560px) {
  .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-table { overflow-x: auto; }
  .cat-table table { min-width: 540px; }
}
