/* ==============================================
   gimo | TONARI TOWN GUIDE BOOK — stylesheet
   ============================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

/* --- Variables --- */
:root {
  --bg:      #ffffff;
  --card:    #f5f5f5;
  --dark:    #1e1810;
  --text:    #2a2118;
  --muted:   #7a6f64;
  --accent:  #ffdc00;
  --accent2: #ffe84d;
  --green:   #5a9e89;
  --border:  #ddd5c4;

  --font:      'Zen Maru Gothic', sans-serif;
  --font-body: 'M PLUS 1p', sans-serif;

  --r-sm:   12px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --pad:  clamp(20px, 4vw, 48px);
  --gap:  clamp(14px, 2vw, 24px);
  --max:  1280px;
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  animation: pg-enter .55s cubic-bezier(.22,1,.36,1) both;
}

/* タイトル・UI要素は Zen Maru Gothic を維持 */
h1, h2, h3, h4,
.btn,
.nav-logo-text,
.nav-links a,
.nav-mobile a,
.hero-title,
.hero-sub,
.hero-badge,
.sec-en,
.sec-ja,
.sec-sub,
.char-name,
.char-name-en,
.work-title,
.taiwan-title,
.taiwan-title-ja,
.step-title,
.workshop-corp-title,
.work-cta-title,
.taiwan-cta-title,
.contact-main-btn,
.news-title,
.news-detail-title,
.footer-logo-text,
.footer-copy {
  font-family: var(--font);
}

/* ── Page transitions ── */
@keyframes pg-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.is-leaving {
  pointer-events: none;
  animation: pg-leave .22s ease forwards;
}
@keyframes pg-leave {
  to { opacity: 0; transform: translateY(-10px) scale(.99); }
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ==============================================
   LAYOUT
   ============================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-dark   { background: var(--dark); color: #fff; }
.section-tinted { background: #f8f6f2; }
.section-yellow { background: #ffdc00; color: var(--dark); }
.section-green  { background: #4aaa52; color: #fff; }

/* ── overrides on green ── */
.section-green .sec-label-text { color: rgba(255,255,255,.65); }
.section-green .sec-label-line { background: rgba(255,255,255,.35); }
.section-green .sec-en  { color: #fff; }
.section-green .sec-ja  { color: rgba(255,255,255,.8); }
.section-green .sec-sub { color: rgba(255,255,255,.65); }
.section-green .char-head-right { color: rgba(255,255,255,.75); }
.section-green .char-card {
  background: #fff;
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
}
.section-green .char-card .img-ph { background: #f0f0f0; }
.section-green .char-name   { color: var(--dark); }
.section-green .char-name-en { color: var(--muted); }
.section-green .char-foot { border-top-color: rgba(255,255,255,.25); }
.section-green .char-foot-note { color: rgba(255,255,255,.75); }
.section-green .char-foot-note strong { color: #fff; }
.section-green .filter-btn {
  border-color: rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.12);
}
.section-green .filter-btn.active,
.section-green .filter-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #3a8a40;
  font-weight: 700;
}
.section-green .char-count { color: rgba(255,255,255,.75); }
.section-green .char-count strong { color: #fff; }
/* 緑背景でカードが絵本的に浮かぶ演出 */
/* workshop overrides on green */
.section-green .workshop-step {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.2);
}
.section-green .step-num  { color: rgba(255,255,255,.35); }
.section-green .step-title { color: #fff; }
.section-green .step-desc  { color: rgba(255,255,255,.75); }
.section-green .workshop-corp-box {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.2);
}
.section-green .workshop-corp-title { color: #fff; }
.section-green .workshop-corp-body  { color: rgba(255,255,255,.75); }
.section-green .workshop-desc { color: rgba(255,255,255,.75) !important; }

.section-green .char-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* char / workshop overrides on yellow */
.section-yellow .char-count-badge {
  background: var(--dark);
  color: var(--accent);
}
.section-yellow .char-head-right { color: rgba(0,0,0,.6); }
.section-yellow .char-foot-note  { color: rgba(0,0,0,.55); }
.section-yellow .char-foot-note strong { color: var(--dark); }
.section-yellow .workshop-corp-box {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.1);
}
.section-yellow .workshop-corp-title { color: var(--dark); }
.section-yellow .workshop-corp-body  { color: rgba(0,0,0,.6); }

/* about overrides on yellow */
.section-yellow .about-body { color: rgba(0,0,0,.72); }
.section-yellow .about-badge {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.1);
}
.section-yellow .about-count-badge {
  background: var(--dark);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.section-yellow .stat-card {
  background: rgba(255,255,255,.4);
  border-color: rgba(0,0,0,.1);
}
.section-yellow .stat-num { color: var(--dark); }
.section-yellow .stat-en  { color: rgba(0,0,0,.5); }
.section-yellow .stat-ja  { color: rgba(0,0,0,.5); }
.section-yellow .btn-primary,
.section-yellow .btn-outline {
  background: #fff;
  color: var(--dark);
  border-color: transparent;
}
.section-yellow .btn-primary:hover,
.section-yellow .btn-outline:hover {
  background: rgba(255,255,255,.85);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* exhibition overrides on yellow */
.section-yellow .ex-head-right { color: rgba(0,0,0,.6); }
.section-yellow .ex-card-featured,
.section-yellow .ex-card {
  background: rgba(255,255,255,.5);
  border-color: rgba(0,0,0,.1);
}
.section-yellow .ex-title { color: var(--dark); }
.section-yellow .ex-desc  { color: rgba(0,0,0,.62); }
.section-yellow .ex-year  { color: rgba(0,0,0,.45); }
.section-yellow .type-solo  { background: rgba(0,0,0,.12); color: var(--dark); }
.section-yellow .type-group { background: rgba(0,0,0,.1);  color: var(--dark); }
.section-yellow .type-event { background: rgba(0,0,0,.1);  color: var(--dark); }

/* collab overrides on yellow */
.section-yellow .sec-label-text { color: rgba(0,0,0,.45); }
.section-yellow .sec-label-line { background: rgba(0,0,0,.18); }
.section-yellow .sec-en  { color: var(--dark); }
.section-yellow .sec-ja  { color: var(--dark); }
.section-yellow .sec-sub { color: rgba(0,0,0,.5); }
.section-yellow .collab-main {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
}
.section-yellow .collab-main .img-ph { background: rgba(0,0,0,.07); }
.section-yellow .collab-main .img-ph svg circle { stroke: rgba(0,0,0,.2); }
.section-yellow .collab-main .img-ph svg circle:nth-child(2n) { fill: rgba(0,0,0,.2); }
.section-yellow .img-ph-label { color: rgba(0,0,0,.3); }
.section-yellow .collab-shop-lbl  { color: var(--dark); }
.section-yellow .collab-shop-title { color: var(--dark); }
.section-yellow .collab-shop-body  { color: rgba(0,0,0,.6); }
.section-yellow .collab-right-label { color: rgba(0,0,0,.45); }
.section-yellow .product-item {
  background: rgba(255,255,255,.45);
  border-color: rgba(0,0,0,.07);
}
.section-yellow .product-name { color: var(--dark); }
.section-yellow .product-ja   { color: rgba(0,0,0,.5); }
.section-yellow .collab-note {
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.1);
}
.section-yellow .collab-note-title { color: var(--dark); }
.section-yellow .collab-note-body  { color: rgba(0,0,0,.55); }
.section-yellow .btn-ghost-dark {
  border-color: rgba(0,0,0,.25);
  color: var(--dark);
}
.section-yellow .btn-ghost-dark:hover { background: rgba(0,0,0,.08); }
.section-yellow .char-foot { border-top-color: rgba(0,0,0,.12); }
.section-yellow .taiwan-stats { border-top-color: rgba(0,0,0,.12); }
.section-yellow .filter-btn { border-color: rgba(0,0,0,.18); color: var(--dark); }
.section-yellow .filter-btn.active,
.section-yellow .filter-btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* contact overrides on yellow */
.section-yellow .contact-desc { color: rgba(0,0,0,.62); }
.section-yellow .contact-type {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
}
.section-yellow .contact-type-en  { color: var(--dark); }
.section-yellow .contact-type-ja  { color: var(--dark); }
.section-yellow .contact-type-desc { color: rgba(0,0,0,.5); }
.section-yellow .contact-main-btn {
  background: var(--dark);
  color: var(--accent);
}
.section-yellow .contact-main-btn:hover {
  background: #3a2d22;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.section-yellow .contact-note { color: rgba(0,0,0,.4); }
.section-yellow .contact-sns a { color: rgba(0,0,0,.45); }
.section-yellow .contact-sns a:hover { color: rgba(0,0,0,.85); }

/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: none;
}
.nav.scrolled,
.nav.nav-solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 7px 18px !important;
  border-radius: var(--r-full) !important;
  margin-left: 4px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: #ffcf33 !important;
  transform: translateY(-1px) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
  transform-origin: center;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  padding: 20px var(--pad) 28px;
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile nav { display: flex; flex-direction: column; gap: 18px; }
.nav-mobile a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-mobile .nav-cta { background: none !important; color: var(--dark) !important; padding: 0 !important; font-weight: 700; }

/* ==============================================
   COMPONENTS
   ============================================== */

/* --- Section title --- */
.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sec-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(30,24,16,.45);
}
.sec-label-line {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(30,24,16,.25);
}
.section-dark .sec-label-text { color: rgba(255,255,255,.4); }
.section-dark .sec-label-line  { background: rgba(255,255,255,.25); }

.sec-en {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--dark);
}
.section-dark .sec-en { color: #fff; }

.sec-ja  { font-size: 13px; color: var(--muted); margin-top: 8px; }
.sec-sub { font-size: 13px; font-style: italic; color: var(--muted); margin-top: 3px; }
.section-dark .sec-ja,
.section-dark .sec-sub { color: rgba(255,255,255,.72); }

/* --- Image placeholder --- */
.img-ph {
  background: #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.img-ph-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #c8bdb5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  padding: 11px 26px;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn::after { content: none; }
.btn-sm { padding: 7px 18px; font-size: 12px; }
.btn-lg { padding: 15px 34px; font-size: 15px; }

.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #ffcf33; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,220,0,.4); }

.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--dark); color: var(--dark); transform: translateY(-2px); }

.btn-ghost-dark { border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); background: transparent; }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-2px); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad) 64px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(42,33,24,.07) 1px, transparent 1px) center/24px 24px,
    #fff;
}
.hero > * { position: relative; z-index: 1; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  margin-bottom: 36px;
}
.hero-title {
  font-size: clamp(1.47rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--dark);
  max-width: 820px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--dark); }
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 2.4;
  max-width: 700px;
  margin-bottom: 8px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-sub { white-space: normal; }
}
.hero-sub-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero-sub-note strong { color: var(--dark); font-weight: 700; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; margin-bottom: 48px; }
.hero-chars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(8px, 2vw, 24px);
  margin-top: 32px;
  margin-bottom: 56px;
}
.hero-chars img {
  width: clamp(60px, 10vw, 120px);
  height: auto;
  object-fit: contain;
  cursor: pointer;
}
.hero-chars img:hover {
  animation: char-jump .85s ease forwards;
}
@keyframes char-jump {
  0%   { transform: translateY(0);     animation-timing-function: ease-out; }
  22%  { transform: translateY(-36px); animation-timing-function: cubic-bezier(.55,0,1,.45); }
  34%  { transform: translateY(0);     animation-timing-function: ease-out; }
  46%  { transform: translateY(-10px); animation-timing-function: ease-in; }
  57%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.hero-eyes { animation: float 4s ease-in-out infinite; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(42,33,24,.5);
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(42,33,24,.55), transparent);
  transform-origin: top center;
  animation: scroll-wipe 1.8s ease-in-out infinite;
}
@keyframes scroll-wipe {
  0%   { transform: scaleY(0); opacity: 1; }
  55%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ==============================================
   ABOUT
   ============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.about-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.about-count-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(200,96,42,.3);
}
.about-count-num { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.about-count-lbl { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; opacity: .8; margin-top: 3px; }
.about-body { font-size: 15px; line-height: 1.85; margin-bottom: 12px; }
.about-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 64px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.stat-num  { font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-en   { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-ja   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ==============================================
   CHARACTER
   ============================================== */
.char-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.char-head-right { max-width: 400px; font-size: 14px; color: var(--muted); line-height: 1.8; text-align: left; }
.char-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.char-count-badge {
  background: var(--accent);
  color: var(--dark);
  border-radius: 4px;
  padding: 8px 12px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  margin-top: 10px;
}
.char-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.char-card {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.char-card .img-ph { aspect-ratio: 1; width: 100%; }
.char-card .img-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.char-card .char-img { aspect-ratio: 1; width: 100%; overflow: hidden; padding-bottom: 0; box-sizing: border-box; }
.char-card .char-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* [TEMP-HIDDEN] char-info / char-filter: 後日対応 — 「非表示を解除」で復活 */
.char-info { padding: 12px 14px; background: #F2F6F8; display: none; }
.char-filter { display: none !important; }
.char-name   { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.char-name-en { font-size: 11px; color: var(--muted); margin-top: 2px; margin-bottom: 8px; }
.char-cat {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.cat-animal   { background: rgba(90,158,137,.14); color: var(--green); }
.cat-food     { background: rgba(255,220,0,.2);    color: var(--dark); }
.cat-plant    { background: rgba(90,158,137,.18); color: var(--green); }
.cat-seasonal { background: rgba(201,162,39,.15); color: #8a6e10; }
.cat-town     { background: rgba(42,33,24,.08);   color: var(--muted); }
.char-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 0;
}
.char-foot-note { font-size: 14px; color: var(--muted); }
.char-foot-note strong { color: var(--dark); font-weight: 700; }

/* ==============================================
   WORK
   ============================================== */
.work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.work-head-right { max-width: 400px; font-size: 14px; color: var(--dark); line-height: 1.8; text-align: left; }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.work-card { background: var(--card); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.work-card-dark { background: var(--dark); border-color: #3a3020; }
.work-card .img-ph { aspect-ratio: 4/3; }
.work-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.work-body .btn { margin-top: auto; align-self: flex-start; }
.work-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.work-cat  { font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--dark); }
.work-card-dark .work-cat { color: rgba(255,255,255,.3); }
.work-year { font-size: 11px; color: var(--muted); }
.work-card-dark .work-year { color: rgba(255,255,255,.2); }
.work-title { font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 8px; margin-top: 2px; }
.work-card-dark .work-title { color: rgba(255,255,255,.5); }
.work-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; overflow-wrap: break-word; word-break: break-all; }
.work-card-dark .work-desc { color: rgba(255,255,255,.3); }

/* confidential img area */
.confidential-img {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.confidential-badge {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.confidential-nda { font-size: 11px; letter-spacing: .3em; color: rgba(255,255,255,.15); }

.work-cta-box {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}
.work-cta-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.work-cta-note  { font-size: 13px; color: var(--muted); }

/* ==============================================
   COLLABORATION
   ============================================== */
.collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.collab-main {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.collab-main .img-ph { aspect-ratio: 4/3; background: rgba(255,255,255,.06); }
.collab-main .img-ph svg circle { stroke: rgba(255,255,255,.25); }
.collab-main .img-ph svg circle:nth-child(2n) { fill: rgba(255,255,255,.25); }
.collab-main-body { padding: 28px 32px; }
.collab-shop-lbl  { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--accent2); margin-bottom: 12px; }
.collab-shop-title { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.collab-shop-body  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 24px; }
.collab-right-label { font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.collab-products { display: flex; flex-direction: column; gap: 10px; }
.product-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.product-icon { font-size: 22px; flex-shrink: 0; }
.product-name { font-size: 14px; font-weight: 600; color: #fff; }
.product-ja   { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.collab-note {
  background: rgba(255,220,0,.18);
  border: 1px solid rgba(255,220,0,.3);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-top: 12px;
}
.collab-note-title { font-size: 14px; font-weight: 700; color: var(--accent2); margin-bottom: 4px; }
.collab-note-body  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; }

/* ==============================================
   WORKSHOP
   ============================================== */
.workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.workshop-img { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16 / 9; margin: 0; padding-top: 0; }
.workshop-right { display: flex; flex-direction: column; gap: 12px; }
.workshop-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border-radius: var(--r-md);
  padding: 18px 20px;
  flex: 1;
}
.step-num   { font-size: 2rem; font-weight: 900; color: var(--border); line-height: 1; flex-shrink: 0; width: 32px; }
.step-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.workshop-corp-box {
  background: rgba(255,220,0,.12);
  border: 1px solid rgba(255,220,0,.2);
  border-radius: var(--r-md);
  padding: 22px;
  margin-top: 4px;
}
.workshop-corp-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.workshop-corp-body  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

/* ==============================================
   TAIWAN
   ============================================== */
.taiwan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.taiwan-stamps { display: flex; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.stamp {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 82px; height: 82px;
  border: 2px solid rgba(90,158,137,.35);
  border-radius: 50%;
  position: relative;
  text-align: center;
}
.stamp::after { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(90,158,137,.15); border-radius: 50%; }
.stamp-text { font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(90,158,137,.55); line-height: 1.3; padding: 0 7px; }
.stamp-year { font-size: 10px; font-weight: 900; color: rgba(90,158,137,.5); margin-top: 2px; }
.taiwan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }
.taiwan-card { background: var(--card); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; }
.taiwan-card .img-ph { aspect-ratio: 16/9; }
.taiwan-body { padding: 26px; }
.taiwan-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.taiwan-loc  { font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--green); }
.taiwan-year { font-size: 11px; color: var(--muted); }
.taiwan-sep  { color: var(--border); }
.taiwan-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.taiwan-title-ja { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.taiwan-desc { font-size: 14px; color: var(--text); line-height: 1.8; }
.taiwan-cta-box {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.taiwan-cta-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.taiwan-cta-note  { font-size: 13px; color: var(--muted); }

/* ==============================================
   EXHIBITION
   ============================================== */
.ex-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.ex-head-right { max-width: 400px; font-size: 14px; color: var(--muted); line-height: 1.8; text-align: left; }
.ex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}
.ex-card-featured {
  grid-row: 1 / 3;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.ex-card-featured .img-ph { aspect-ratio: 3/4; }
.ex-card-body-full { padding: 26px; }
.ex-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
}
.ex-card .img-ph { width: 110px; flex-shrink: 0; aspect-ratio: 1; border-radius: 0; }
.ex-card-body { padding: 18px; flex: 1; min-width: 0; }
.ex-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.ex-type {
  font-size: 9px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-full);
}
.type-solo  { background: rgba(255,220,0,.22); color: var(--dark); }
.type-group { background: rgba(90,158,137,.12); color: var(--green); }
.type-event { background: rgba(201,162,39,.12); color: #7a6000; }
.ex-year { font-size: 11px; color: var(--muted); }
.ex-title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 5px; }
.ex-title-lg { font-size: 22px; margin-bottom: 6px; }
.ex-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.ex-desc-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ex-footer { display: flex; justify-content: center; margin-top: 32px; }

/* ==============================================
   SHOP
   ============================================== */
.shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.shop-head-right { max-width: 400px; font-size: 14px; color: var(--muted); line-height: 1.8; text-align: left; }
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.shop-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.shop-card .img-ph { aspect-ratio: 4/3; }
.shop-card-body { padding: 18px; }
.shop-card-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.shop-new {
  display: inline-block; font-size: 8px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: var(--dark);
  padding: 2px 6px; border-radius: var(--r-full);
  margin-left: 6px; vertical-align: middle;
}
.shop-card-ja   { font-size: 12px; color: var(--muted); margin-top: 2px; margin-bottom: 8px; }
.shop-card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.shop-link { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); }
.shop-btns { display: flex; gap: 12px; justify-content: center; }

/* ==============================================
   YELLOW-GREEN SECTION (Contact)
   ============================================== */
.section-yellow-green {
  background: #aacc3a;
  color: var(--dark);
}
.section-yellow-green .sec-en { color: var(--dark); }
.section-yellow-green .sec-ja { color: rgba(0,0,0,.55); }
.section-yellow-green .contact-desc { color: rgba(0,0,0,.62); }
.section-yellow-green .contact-type {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
}
.section-yellow-green .contact-type-en { color: var(--dark); }
.section-yellow-green .contact-type-ja { color: var(--dark); }
.section-yellow-green .contact-type-desc { color: rgba(0,0,0,.5); }
.section-yellow-green .contact-note { color: rgba(0,0,0,.4); }
.section-yellow-green .contact-sns a { color: rgba(0,0,0,.4); }
.section-yellow-green .contact-sns a:hover { color: rgba(0,0,0,.8); }

/* ==============================================
   CONTACT
   ============================================== */
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(64px,8vw,120px) var(--pad);
}
.contact-eyes { display: flex; justify-content: center; margin-bottom: 32px; animation: float 4s ease-in-out infinite; }
.contact-desc { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.85; margin-top: 20px; margin-bottom: 40px; }
.contact-types { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; margin-bottom: 48px; }
.contact-type { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 22px; }
.contact-type-en { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.contact-type-ja { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-type-desc { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.6; }
.contact-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: var(--r-full);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-bottom: 16px;
}
.contact-main-btn:hover { background: #ffcf33; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,220,0,.4); }
.contact-note { font-size: 14px; color: rgba(255,255,255,.77); margin-top: 16px; margin-bottom: 0; text-align: center; }
.contact-sns { display: flex; align-items: center; gap: 24px; justify-content: center; margin-top: 12px; }
.contact-form { width: 100%; margin-bottom: 32px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.contact-label-text { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.72); text-align: left; }
.contact-required { color: var(--accent); }
.contact-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.contact-input::placeholder { color: rgba(255,255,255,.2); }
.contact-input:focus { border-color: var(--accent); background: rgba(255,255,255,.09); }
.contact-select { appearance: none; cursor: pointer; }
.contact-select option { background: #2a1918; color: #fff; }
.contact-textarea { min-height: 160px; resize: vertical; }
.contact-submit { width: 100%; justify-content: center; cursor: pointer; border: none; font-family: inherit; }
.contact-sns a { display: flex; align-items: center; color: rgba(255,255,255,.55); transition: color .2s; }
.contact-sns a:hover { color: rgba(255,255,255,.9); }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #1a130c;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { color: rgba(255,255,255,.6); font-weight: 900; font-size: 16px; }
.footer-logo-sub  { color: rgba(255,255,255,.45); font-size: 12px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 18px; justify-content: center; }
.footer-nav a { font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-nav a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .08em; }

/* ==============================================
   PAGE HEADER (for individual pages)
   ============================================== */
.page-hero {
  padding: 100px 0 0;
  background:
    radial-gradient(circle, rgba(42,33,24,.06) 1px, transparent 1px) center/24px 24px,
    #fff;
}
.page-hero.dark   { background: var(--dark); }
.page-hero.section-green { background: #4aaa52; padding-bottom: 0; }
.page-hero.section-yellow { background: #ffdc00; }

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .char-grid  { grid-template-columns: repeat(4,1fr); }
  .shop-grid  { grid-template-columns: repeat(2,1fr); }
  .stats-row  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }

  .char-head { flex-direction: column; align-items: flex-start; }
  .char-head-right { text-align: left; }
  .char-grid { grid-template-columns: repeat(3,1fr); }


  .work-head { flex-direction: column; align-items: flex-start; }
  .work-head-right { text-align: left; }
  .work-grid { grid-template-columns: 1fr; }
  .work-cta-box { flex-direction: column; align-items: flex-start; }

  .collab-grid  { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }

  .taiwan-head { flex-direction: column; align-items: flex-start; }
  .taiwan-grid { grid-template-columns: 1fr; }
  .taiwan-cta-box { flex-direction: column; align-items: flex-start; }

  .ex-head { flex-direction: column; align-items: flex-start; }
  .ex-head-right { text-align: left; }
  .ex-grid { grid-template-columns: 1fr; }
  .ex-card-featured { grid-row: auto; }
  .ex-card-featured .img-ph { aspect-ratio: 16/9; }

  .shop-head { flex-direction: column; align-items: flex-start; }
  .shop-head-right { text-align: left; }
  .shop-btns { flex-direction: column; align-items: center; }

  .contact-types { grid-template-columns: 1fr; }
  .contact-main-btn { font-size: 15px; padding: 15px 30px; }
  .contact-form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
}

@media (max-width: 480px) {
  .char-grid { grid-template-columns: repeat(3,1fr); }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 1.27rem; }
  .sec-en { font-size: 2rem; }
  .char-count-badge { padding: 4px 8px 4px 10px; margin-top: 5px; }
  .about-count-num  { font-size: 19px; }
  .char-title-row { gap: 10px; }
  .about-btns { margin-top: 27px; }
}

/* ==============================================
   INDIVIDUAL PAGE SUPPLEMENTS
   (work, collab, workshop, taiwan, exhibition, shop)
   ============================================== */

/* -- Work (individual page) -- */
.work-img { aspect-ratio: 4/3; }
.work-info { padding: 20px; }
.work-tag {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(255,220,0,.22); color: var(--dark);
  margin-bottom: 8px;
}
.work-card-confidential {
  background: var(--dark);
  border-color: #3a3020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 32px;
  text-align: center;
  gap: 8px;
}
.work-confidential-badge {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.work-confidential-sub  { font-size: 12px; letter-spacing: .3em; color: rgba(255,255,255,.15); }
.work-confidential-note { font-size: 12px; color: rgba(255,255,255,.2); }

/* -- Collaboration (individual page) -- */
.collab-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.collab-img { aspect-ratio: 16/9; }
.collab-info { padding: 22px 24px; }
.collab-tag {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(255,220,0,.22); color: var(--dark);
  margin-bottom: 8px;
}
.collab-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.collab-desc  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; }
.collab-cta   { text-align: center; margin-top: 56px; }
.collab-cta-text { font-size: 15px; color: rgba(255,255,255,.45); margin-bottom: 20px; }

/* -- Workshop (individual page) -- */
.workshop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.workshop-num  { font-size: 11px; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; color: var(--dark); padding: 20px 24px 0; }
.workshop-img  { aspect-ratio: 16/9; margin: 0; }
.workshop-title { font-size: 18px; font-weight: 700; color: var(--dark); padding: 16px 24px 6px; }
.workshop-desc  { font-size: 13px; color: var(--muted); line-height: 1.75; padding: 0 24px 12px; }
.workshop-specs { padding: 0 24px 22px; }
.workshop-specs li { font-size: 12px; color: var(--muted); padding: 4px 0; border-bottom: 1px solid var(--border); }
.workshop-specs li:first-child { border-top: 1px solid var(--border); }
.workshop-cta  { text-align: center; margin-top: 56px; }
.workshop-cta-text { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

/* -- Taiwan (individual page) -- */
.taiwan-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; margin-bottom: 48px; }
.taiwan-text  { }
.taiwan-body  { font-size: 15px; line-height: 1.85; color: var(--text); }
.taiwan-stamps { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.stamp-green  { border-color: rgba(90,158,137,.4); }
.stamp-green  .stamp-text, .stamp-green { color: rgba(90,158,137,.7); font-size: 10px; font-weight: 700; }
.stamp-orange { border-color: rgba(255,220,0,.6); color: rgba(180,150,0,.8); font-size: 10px; font-weight: 700; }
.stamp-brown  { border-color: rgba(122,111,100,.4); color: rgba(122,111,100,.7); font-size: 10px; font-weight: 700; }
.taiwan-images { }
.taiwan-img-main { border-radius: var(--r-xl); overflow: hidden; }
.taiwan-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--gap);
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 12px;
}
.taiwan-stat { text-align: center; }
.taiwan-stat-num { font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.taiwan-stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* -- Exhibition (individual page) -- */
.ex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ex-main-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.ex-main-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--dark);
  font-size: 9px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full);
}
.ex-main-img  { aspect-ratio: 4/3; }
.ex-main-info { padding: 28px; }
.ex-main-title { font-size: 24px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.ex-main-sub   { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.ex-detail-row { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.ex-detail-label { font-weight: 600; color: var(--muted); min-width: 48px; flex-shrink: 0; }
.ex-detail-val   { color: var(--dark); }
.ex-main-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin: 16px 0; }
.ex-past-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.ex-past-list  { display: flex; flex-direction: column; gap: 0; }
.ex-past-item  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ex-past-event { font-size: 14px; color: var(--dark); }
.ex-past-date  { font-size: 12px; color: var(--muted); }

/* -- Shop (individual page) -- */
.shop-img  { aspect-ratio: 4/3; }
.shop-info { padding: 16px; }
.shop-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.shop-price { font-size: 13px; color: var(--dark); font-weight: 600; }

@media (max-width: 768px) {
  .taiwan-grid  { grid-template-columns: 1fr; }
  .taiwan-stats { grid-template-columns: repeat(3,1fr); }
  .ex-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .char-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==============================================
   NEWS
   ============================================== */
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.news-list {
  border-top: 1px solid var(--border);
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: opacity .15s;
}
.news-item:hover { opacity: .6; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.news-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: .05em;
  min-width: 80px;
}
.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}
.news-tag-info   { background: var(--dark); color: #fff; }
.news-tag-collab { background: var(--accent); color: var(--dark); }
.news-tag-event  { background: var(--green); color: #fff; }
.news-tag-goods  { background: #e8d5c0; color: var(--dark); }
.news-title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.news-arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 16px;
}

/* news-detail page */
.news-detail-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.news-detail-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 32px;
}
.news-detail-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.news-detail-body p + p { margin-top: 1.4em; }
.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .15s;
}
.news-detail-back:hover { color: var(--dark); }

@media (max-width: 640px) {
  .news-item { flex-wrap: wrap; gap: 10px 14px; }
  .news-meta  { width: 100%; }
  .news-title { width: 100%; font-size: 14px; }
  .news-arrow { display: none; }
}

/* ==============================================
   BACK TO TOP
   ============================================== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover { background: #3a2d22; transform: translateY(-2px); }
