/* =========================================================
   SOBLUE LIVE — shared styles (v2)
   Sans-serif throughout. Subtly darker, more blue.
   ========================================================= */

:root {
  /* surfaces */
  --paper:     #eef0f6;   /* page bg — very subtle blue-gray */
  --paper-2:   #f6f7fb;   /* alt stripe */
  --surface:   #ffffff;   /* cards */

  /* ink */
  --ink:       #0d1530;
  --ink-2:     #232a45;
  --muted:     #545b71;
  --muted-2:   #8a92a3;
  --line:      #d6dae3;
  --line-2:    #c4c9d4;

  /* blue */
  --blue:      #1b3f9c;
  --blue-2:    #14318a;
  --blue-3:    #2f5dc7;
  --blue-soft: #6a8bd6;
  --blue-tint: #e3e9f6;
  --blue-deep: #0c1f5a;

  /* type */
  --sans:    "Hanken Grotesk", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  --sans-cn: "Noto Sans SC", "PingFang SC", "Hanken Grotesk", sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em, i { font-style: normal; }   /* keep things sans throughout */

/* ============ Ambient background — drifting blue, slightly stronger ============ */
.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  mix-blend-mode: multiply;
  will-change: transform;
}
.bg .blob.a {
  width: 75vmin; height: 75vmin;
  left: -10vmin; top: -10vmin;
  background: radial-gradient(circle, rgba(40,80,180,0.16) 0%, rgba(40,80,180,0) 70%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.bg .blob.b {
  width: 85vmin; height: 85vmin;
  right: -15vmin; bottom: -15vmin;
  background: radial-gradient(circle, rgba(60,100,200,0.14) 0%, rgba(60,100,200,0) 70%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.bg .blob.c {
  width: 55vmin; height: 55vmin;
  left: 45%; top: 55%;
  background: radial-gradient(circle, rgba(100,130,210,0.10) 0%, rgba(100,130,210,0) 70%);
  animation: drift-c 38s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate(18vmin, 14vmin)  scale(1.15); } }
@keyframes drift-b { to { transform: translate(-16vmin, -18vmin) scale(1.10); } }
@keyframes drift-c {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-30%, -65%) scale(0.9); }
}

/* ============ Shell ============ */
.page {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page > * {
  min-width: 0;
}
.hero,
.upcoming,
.about,
.shop-window {
  width: 100%;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 240, 246, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(214, 218, 227, 0.7);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { width: 26px; height: 26px; }
.nav-brand .wm {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 16px; height: 1px;
  background: var(--blue);
  transform: translateX(-50%);
}
.nav-cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  transition: background .35s ease, transform .35s ease;
  cursor: pointer;
}
.nav-cta:hover { background: var(--blue-2); transform: translateY(-1px); }
@media (max-width: 740px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.18em; }
  .nav-cta { display: none; }
}

/* ============ Generic section headers ============ */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-title {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(36px, 5.4vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
}
.section-title .cn {
  font-family: var(--sans-cn);
  font-weight: 300;
  letter-spacing: 0.18em;
  display: block;
  font-size: 0.42em;
  margin-top: 14px;
  color: var(--muted);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .more {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
  cursor: pointer;
}
.section-head .more:hover { color: var(--blue); border-color: var(--blue); }
.section-head .more.is-on { color: var(--blue); border-color: var(--blue); }

/* hairline rules */
.rule { height: 1px; background: var(--line); width: 100%; }
.rule-short { width: 28px; height: 1px; background: var(--muted-2); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .35s ease, color .35s ease, transform .35s ease, border-color .35s ease;
}
.btn-ink   { background: var(--ink); color: #fff; }
.btn-ink:hover   { background: var(--blue-2); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-2); }

/* ============ Marquee — SOBLUE + LOGO (blue strip) ============ */
.marquee {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  align-items: center;
  padding: 18px 0;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-group {
  display: flex;
  gap: 56px;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 56px;
}
.marquee span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
}
.marquee img {
  width: 34px; height: 34px;
  filter: invert(1) brightness(1.1);
  opacity: 0.85;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Footer / Disc — animates in on scroll ============ */
.footer-wrap {
  position: relative;
  margin-top: 18vh;
  overflow: hidden;
  isolation: isolate;
  /* Lock to one viewport so the page ends right when everything is visible */
  height: 78vh;
  min-height: 600px;
}
.disc-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.disc {
  position: absolute;
  left: 50%;
  bottom: -116vh;          /* disc top rises near the top of the footer so it covers the text */
  width: 180vh;
  height: 180vh;
  border-radius: 50%;
  /* initial — hidden below */
  transform: translateX(-50%) translateY(40vh) scale(0.94);
  opacity: 0;
  background:
    repeating-radial-gradient(
      circle at 50% 50%,
      rgba(0,0,0,0.10) 0px,
      rgba(0,0,0,0.10) 1px,
      rgba(255,255,255,0.025) 2px,
      rgba(255,255,255,0.025) 5px
    ),
    repeating-radial-gradient(
      circle at 50% 50%,
      rgba(0,0,0,0) 0px,
      rgba(0,0,0,0) 38px,
      rgba(0,0,0,0.10) 39px,
      rgba(0,0,0,0) 41px
    ),
    radial-gradient(circle at 50% 30%, #2f5dc7 0%, #1b3f9c 45%, #14318a 80%, #0e2570 100%);
  box-shadow:
    0 -20px 60px -20px rgba(20,49,138,0.30),
    inset 0 40px 80px rgba(255,255,255,0.08);
  transition: opacity 1.6s cubic-bezier(.22,.7,.2,1), transform 1.6s cubic-bezier(.22,.7,.2,1);
}
.disc::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 22%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 35%);
  mix-blend-mode: screen;
}
/* center spindle hidden — the user shouldn't see the disc's center inside the viewport */
.disc::after { display: none; }

.footer-wrap.in-view .disc {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  animation: disc-float 14s ease-in-out 2.4s infinite alternate;
}
@keyframes disc-float {
  to { translate: 0 -10px; }
}

/* Disc-top logo — fades in with disc */
.disc-logo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  filter: invert(1) brightness(1.05) drop-shadow(0 4px 20px rgba(255,255,255,0.18));
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(.22,.7,.2,1), transform 1.1s cubic-bezier(.22,.7,.2,1);
}
.footer-wrap.in-view .disc-logo {
  opacity: 0.92;
  transform: translateY(0) scale(1);
  transition-delay: 0.55s;
}

/* Address inside contact column */
.contact-col .contact-address {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--sans-cn);
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.7;
  text-align: center;
}
.contact-col .contact-address .en {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: rgba(234,240,255,0.55);
  text-transform: uppercase;
  margin-top: 6px;
}

.footer {
  position: relative;
  z-index: 2;
  /* push content into the lower half of the container so it sits on top of the visible disc */
  padding: 18vh var(--pad-x) 2vh;
  color: #eaf0ff;
  text-align: center;
}
.footer-rule {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin: 0 auto 22px;
  opacity: 0;
  transition: opacity 1.2s 0.4s ease;
}
.footer-address {
  font-family: var(--sans-cn);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 6px;
}
.footer-address-en {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  color: rgba(234,240,255,0.6);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 36px);
  max-width: 820px;
  margin: 0 auto;
}
.f-col-head {
  font-family: var(--sans-cn);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: #fff;
  margin-bottom: 4px;
}
.f-col-head-en {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(234,240,255,0.55);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.f-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-list li {
  font-family: var(--sans-cn);
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(234,240,255,0.78);
  line-height: 1.55;
}
.f-list li .k {
  color: rgba(234,240,255,0.5);
  margin-right: 8px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
}
.f-list li .v {
  color: #fff;
  letter-spacing: 0.04em;
}
.hours-line {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(234,240,255,0.78);
  text-transform: uppercase;
}
.hours-time {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #fff;
  margin-top: 4px;
}
.hours-tag {
  margin-top: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(234,240,255,0.55);
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(234,240,255,0.55);
  text-transform: uppercase;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* Slide-up-from-below stagger inside the footer */
.footer > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.22,.7,.2,1), transform 1s cubic-bezier(.22,.7,.2,1);
}
/* the disc-logo has its own transition above; don't double-animate */
.footer > .disc-logo { transform: translateY(28px) scale(0.96); }
.footer-wrap.in-view .footer-rule { opacity: 1; }
.footer-wrap.in-view .footer > * { opacity: 1; transform: translateY(0); }
.footer-wrap.in-view .footer > .disc-logo { opacity: 0.92; transform: translateY(0) scale(1); }
.footer-wrap.in-view .footer > *:nth-child(1) { transition-delay: 0.55s; }   /* logo */
.footer-wrap.in-view .footer > *:nth-child(2) { transition-delay: 0.72s; }   /* rule */
.footer-wrap.in-view .footer > *:nth-child(3) { transition-delay: 0.84s; }   /* grid */
.footer-wrap.in-view .footer > *:nth-child(4) { transition-delay: 0.96s; }   /* bottom */

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; max-width: 360px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============ Reusable enter animations ============ */
.fx-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: fx-fade 1.2s cubic-bezier(.22,.7,.2,1) forwards;
}
@keyframes fx-fade { to { opacity: 1; transform: none; } }
.fx-blur {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  filter: blur(8px);
  animation: fx-blur 1.6s cubic-bezier(.22,.7,.2,1) forwards;
}
@keyframes fx-blur { to { opacity: 1; transform: none; filter: blur(0); } }

/* ============ Product cards (shared by shop + homepage shop-preview) ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px);
}
@media (max-width: 880px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .grid { grid-template-columns: 1fr; } }

.product { display: block; cursor: pointer; transition: transform .4s ease; }
.product:hover { transform: translateY(-3px); }
.product .art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.product .art .grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.product .tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  padding: 5px 10px;
  border-radius: 999px;
}
.product .tag.blue { background: var(--blue); color: #fff; }
.product .quick {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}
.product:hover .quick { opacity: 1; transform: translateY(0); }
.product .quick:hover { background: var(--blue); }

.product .info {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.product .info .name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.product .info .name .cn {
  display: block;
  font-family: var(--sans-cn);
  font-weight: 300;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}
.product .info .price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.product .info .price s {
  font-size: 12px;
  color: var(--muted-2);
  margin-right: 6px;
  text-decoration: line-through;
}

/* ===== art placeholder treatments ===== */
.art.vinyl {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 60% 60%, #2f5dc7 0%, #14318a 70%, #0e2670 100%);
}
.art.vinyl::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 78%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(255,255,255,0.07) 0px, rgba(255,255,255,0.07) 1px,
      rgba(0,0,0,0.18) 2px, rgba(0,0,0,0.18) 4px),
    radial-gradient(circle at 50% 50%, #0a1f5a 0%, #050d2e 100%);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.4);
}
.art.vinyl::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 16%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #f6e9c4 0%, #c79a4f 60%, #6d4815 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.art.vinyl-2::after { background: radial-gradient(circle, #f4efe2 0%, #d9d2bf 70%, #978f76 100%); }
.art.vinyl-3::after { background: radial-gradient(circle, #f8d7c7 0%, #c4543a 60%, #6b1f12 100%); }

.art.tee { background: linear-gradient(180deg, #f1f3f8 0%, #e6e9f2 100%); }
.art.tee::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'><path d='M20 18 L35 6 Q50 14 65 6 L80 18 L92 32 L78 42 L78 100 L22 100 L22 42 L8 32 Z' fill='black'/></svg>");
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'><path d='M20 18 L35 6 Q50 14 65 6 L80 18 L92 32 L78 42 L78 100 L22 100 L22 42 L8 32 Z' fill='black'/></svg>");
  -webkit-mask-size: contain;        mask-size: contain;
  -webkit-mask-repeat: no-repeat;    mask-repeat: no-repeat;
  -webkit-mask-position: center;     mask-position: center;
}
.art.tee.bone { background: linear-gradient(180deg, #f7f3e9 0%, #ece5d3 100%); }
.art.tee.bone::before { background: #2a2f3a; }
.art.tee.blue::before { background: var(--blue); }

.art.tote { background: linear-gradient(180deg, #f0eee5 0%, #e2dfd1 100%); }
.art.tote::before {
  content: "";
  position: absolute;
  left: 50%; top: 56%;
  transform: translate(-50%, -50%);
  width: 52%; height: 62%;
  background: #f6f4ec;
  border: 1px solid #c6c2b1;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18);
}
.art.tote::after {
  content: "";
  position: absolute;
  left: 50%; top: 28%;
  transform: translateX(-50%);
  width: 38%; height: 24%;
  border: 1.5px solid #c6c2b1;
  border-bottom: none;
  border-radius: 90% 90% 0 0 / 100% 100% 0 0;
}
.art.mug { background: linear-gradient(180deg, #ece9e0 0%, #d8d4c5 100%); }
.art.mug::before {
  content: "";
  position: absolute;
  left: 48%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42%; height: 50%;
  background: #fff;
  border-radius: 4px 4px 14px 14px;
  box-shadow: inset -8px 0 18px rgba(0,0,0,0.06), 0 18px 40px -20px rgba(0,0,0,0.18);
}
.art.mug::after {
  content: "";
  position: absolute;
  left: 70%; top: 50%;
  transform: translateY(-50%);
  width: 14%; height: 22%;
  border: 6px solid #fff;
  border-radius: 50%;
  background: transparent;
}
.art.pin { background: radial-gradient(circle at 40% 40%, #f6f4ec 0%, #d8d4c5 100%); }
.art.pin::before {
  content: "";
  position: absolute;
  left: 38%; top: 52%;
  transform: translate(-50%, -50%);
  width: 30%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4a73d6 0%, #14318a 80%);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25);
}
.art.pin::after {
  content: "";
  position: absolute;
  right: 25%; top: 52%;
  transform: translate(50%, -50%);
  width: 22%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0d99a 0%, #c79a4f 80%);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25);
}
.art.book { background: linear-gradient(180deg, #efece2 0%, #ddd8c6 100%); }
.art.book::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 48%; height: 64%;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(0,0,0,0.08) 6% 7%, transparent 7%),
    var(--blue-deep);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.3);
}
.art.cap { background: linear-gradient(180deg, #eeece3 0%, #d6d2c1 100%); }
.art.cap::before {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: 60%; height: 32%;
  background: var(--blue-2);
  border-radius: 60% 60% 12% 12% / 90% 90% 12% 12%;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.25);
}
.art.cap::after {
  content: "";
  position: absolute;
  left: 50%; top: 64%;
  transform: translate(-50%, -50%);
  width: 78%; height: 6%;
  background: var(--blue-2);
  border-radius: 50%;
}
.art.note { background: linear-gradient(180deg, #efece2 0%, #ddd8c6 100%); }
.art.note::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42%; height: 60%;
  background:
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(0,0,0,0.07) 12px 13px),
    #f6f4ec;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18);
}
.art.note::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 4%; height: 60%;
  background: var(--blue);
}

/* ============ WeChat modal ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 21, 48, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 8px;
  padding: 44px 36px 32px;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform .45s cubic-bezier(.22,.7,.2,1);
  box-shadow: 0 40px 100px -20px rgba(13, 21, 48, 0.45);
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--muted);
  cursor: pointer;
  transition: background .3s, color .3s;
}
.modal-close:hover { background: var(--paper); color: var(--ink); }
.modal-close svg { width: 14px; height: 14px; }

.modal-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
}
.modal-title {
  font-family: var(--sans-cn);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-top: 10px;
}
.modal-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}
.modal-qr {
  width: 220px;
  height: 220px;
  margin: 28px auto 20px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: block;
}
.modal-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.modal-id:hover { background: var(--blue-tint); border-color: var(--blue-soft); }
.modal-id .k {
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--blue);
  text-transform: uppercase;
}
.modal-foot {
  margin-top: 18px;
  font-family: var(--sans-cn);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

/* ============ Calendar widget (homepage + shows) ============ */
.calendar-widget {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 32px);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height .55s cubic-bezier(.22,.7,.2,1),
              opacity .35s ease,
              padding .4s ease,
              border-width .4s ease,
              margin-top .4s ease;
}
.calendar-widget.is-open {
  max-height: 720px;
  opacity: 1;
  border-width: 1px;
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.cal-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.cal-head h3 .cn {
  font-family: var(--sans-cn);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-left: 12px;
}
.cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.cal-nav:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 6px;
}
.cal-weekdays span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  padding: 8px 4px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 1fr;
  gap: 4px;
}
.cal-cell {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1.2 / 1;
  border-radius: 4px;
  padding: 8px 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  line-height: 1;
  background: var(--paper-2);
  color: var(--muted-2);
  transition: background .25s, color .25s;
}
.cal-cell.empty { background: transparent; }
.cal-cell.has-show {
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}
.cal-cell.has-show:hover { background: var(--blue-2); }
.cal-cell.has-show .d { color: #fff; }
.cal-cell.has-show .label {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cal-cell.today { box-shadow: 0 0 0 2px var(--ink) inset; }
.cal-cell.off { color: var(--muted-2); }
.cal-cell .d {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.cal-cell.off .d { color: var(--muted-2); }

.calendar-poster-float {
  position: fixed;
  z-index: 300;
  width: clamp(150px, 16vw, 230px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.96);
  transition: opacity .18s ease, transform .18s ease;
  filter: drop-shadow(0 24px 42px rgba(13, 21, 48, 0.28));
}
.calendar-poster-float.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.calendar-poster-img {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.72);
  background: var(--paper-2) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(13,21,48,0.08);
}
.calendar-poster-title {
  display: inline-block;
  max-width: 100%;
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(13, 21, 48, 0.88);
  color: #fff;
  font-family: var(--sans-cn);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .cal-cell { aspect-ratio: 1 / 1; padding: 6px; font-size: 11px; }
  .cal-cell .d { font-size: 13px; }
  .cal-weekdays span { font-size: 9px; letter-spacing: 0.2em; }
  .calendar-poster-float { display: none; }
}

.cal-legend {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.cal-legend .dot {
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--blue);
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.cal-legend .dot.off { background: var(--paper-2); border: 1px solid var(--line); }

/* ============ Horizontal calendar strip (3 months) ============ */
.cal-strip {
  --cal-w: min(86vw, 520px);
  --cal-edge: max(12px, calc((100% - var(--cal-w)) / 2));
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px var(--cal-edge) 32px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cal-strip::-webkit-scrollbar { display: none; }
.cal-strip > .calendar-widget {
  flex: 0 0 var(--cal-w);
  scroll-snap-align: center;
  margin-top: 0;
  /* override the toggleable widget defaults */
  max-height: none;
  opacity: 1;
  border-width: 1px;
  padding: clamp(20px, 3vw, 28px);
  transition: transform .5s cubic-bezier(.22,.7,.2,1), opacity .5s ease, box-shadow .5s ease;
  transform: scale(0.92);
  opacity: 0.55;
}
.cal-strip > .calendar-widget.is-center {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 30px 80px -40px rgba(13, 21, 48, 0.25);
  border-color: var(--blue-soft);
}
.cal-strip-foot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cal-strip-foot .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.cal-strip-foot .dot.is-active {
  background: var(--blue);
  transform: scale(1.5);
}

.scroller-shell {
  position: relative;
}
.scroller-btn {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(13,21,48,0.14);
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 18px 42px -30px rgba(13,21,48,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.scroller-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.04);
}
.scroller-btn.prev { left: 8px; }
.scroller-btn.next { right: 8px; }

/* ============ Coverflow (shop preview) ============ */
.coverflow {
  --cf-w: min(24vw, 260px);
  --cf-edge: max(12px, calc((100% - var(--cf-w)) / 2));
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 48px var(--cf-edge) 56px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.coverflow::-webkit-scrollbar { display: none; }
.coverflow > .product {
  flex: 0 0 var(--cf-w);
  scroll-snap-align: center;
  transform-origin: center center;
  transition: transform .35s cubic-bezier(.22,.7,.2,1), opacity .35s ease;
  /* initial — will be overwritten by JS */
  transform: scale(0.5);
  opacity: 0.5;
}
.coverflow > .product .info { transition: opacity .3s ease; }


/* =========================================================
   Mobile — hamburger menu + drawer
   ========================================================= */
.nav-burger {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease;
}
.nav-burger:hover { border-color: var(--ink); }
.nav-burger span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s cubic-bezier(.22,.7,.2,1), opacity .25s ease, top .3s cubic-bezier(.22,.7,.2,1);
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger span:nth-child(3) { top: 23px; }
.nav.is-open .nav-burger span:nth-child(1) { top: 18px; transform: translateX(-50%) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { top: 18px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-burger { display: inline-block; }

  /* shrink brand a touch */
  .nav-inner { gap: 12px; height: 56px; }
  .nav-brand .wm { font-size: 12px; letter-spacing: 0.32em; }
  .nav-brand img { width: 22px; height: 22px; }

  /* hide desktop CTA on small screens — the drawer carries the reserve link */
  .nav-cta { display: none; }

  /* nav-links becomes a full-screen drawer */
  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    height: calc(100vh - 56px);
    background: rgba(238, 240, 246, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0 !important;
    padding: 32px var(--pad-x);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.22,.7,.2,1), opacity .3s ease;
    z-index: 60;
    overflow-y: auto;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 18px 0 !important;
    font-size: 18px !important;
    letter-spacing: 0.22em !important;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav-links a.is-active::after { display: none; }
  .nav-links a.is-active { color: var(--blue); }

  .nav.is-open .nav-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* =========================================================
   Mobile — fine-tune by feature
   ========================================================= */

/* Hero: stack, shrink, tighten padding */
@media (max-width: 760px) {
  .hero { padding-top: 32px !important; padding-bottom: 48px !important; gap: 32px !important; }
  .hero-artist { font-size: clamp(44px, 12vw, 64px) !important; line-height: 1 !important; }
  .hero-artist .cn { font-size: 13px !important; letter-spacing: 0.24em !important; margin-top: 12px !important; }
  .hero-blurb { font-size: 13.5px !important; line-height: 1.8 !important; }
  .hero-eyebrow { font-size: 10.5px !important; letter-spacing: 0.28em !important; }
  .hero-meta { gap: 10px 18px !important; grid-template-columns: auto 1fr !important; }
  .hero-meta .v { font-size: 14px !important; }
  .hero-meta .v .sub { display: block; margin-left: 0 !important; margin-top: 2px; font-size: 11px !important; }
  .hero-actions .btn { padding: 11px 18px; font-size: 11px; }
  .hero-right { max-width: 320px !important; aspect-ratio: 4/4.5 !important; }
  .hero-right.has-image { aspect-ratio: var(--poster-aspect, 4 / 5) !important; }
}

/* Hero poster — show uploaded image if any */
.hero-right.has-image {
  aspect-ratio: var(--poster-aspect, 4 / 5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-right.has-image::before { display: none; }
.hero-right.has-image .silhouette { display: none; }
.hero-right.has-image .grain {
  background: inherit;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08);
  mix-blend-mode: normal;
  z-index: -1;
}

/* About photo with image */
.about-photo.has-image {
  background-size: cover !important;
  background-position: center !important;
}
.about-photo.has-image::after { display: none; }

/* Lookbook .look.has-image */
.look.has-image { background-size: cover !important; background-position: center !important; }
.look.has-image::after { display: none; }

/* product .art.has-image */
.product .art.has-image { background-size: cover; background-position: center; }
.product .art.has-image::before,
.product .art.has-image::after { display: none !important; }

/* featured-art with image */
.featured-art[style*="background-image"]::after { display: none; }


/* Upcoming / cal-strip — small screens: narrower cards, less padding */
@media (max-width: 760px) {
  .upcoming { padding-top: 56px !important; padding-bottom: 16px !important; }
  .cal-strip {
    --cal-w: min(82vw, 360px);
    --cal-edge: max(12px, calc((100% - var(--cal-w)) / 2));
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 24px;
  }
  .cal-head h3 { font-size: 20px; }
  .cal-cell { font-size: 11px; padding: 5px; }
  .cal-cell .d { font-size: 12.5px; }
  .cal-cell.has-show .label { font-size: 8.5px; letter-spacing: 0.16em; }
}

/* Coverflow on small screens */
@media (max-width: 760px) {
  .coverflow {
    --cf-w: min(72vw, 260px);
    --cf-edge: max(12px, calc((100% - var(--cf-w)) / 2));
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .scroller-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .scroller-btn.prev { left: 0; }
  .scroller-btn.next { right: 0; }
}

/* About section */
@media (max-width: 760px) {
  .about { padding-top: 64px !important; padding-bottom: 32px !important; gap: 32px !important; }
  .about-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .about-body .pull { font-size: clamp(22px, 6vw, 30px) !important; line-height: 1.45 !important; }
  .about-body p { font-size: 14px !important; line-height: 1.85 !important; margin-top: 18px !important; }
}

/* Section heads on small screens */
@media (max-width: 760px) {
  .section-title { font-size: clamp(30px, 8vw, 44px) !important; }
  .section-head { margin-bottom: 24px !important; gap: 12px !important; align-items: flex-start; }
  .section-head .more { font-size: 11px; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.26em; }
}

/* Marquee — smaller */
@media (max-width: 760px) {
  .marquee-track { padding: 14px 0; }
  .marquee-group { gap: 36px; padding-right: 36px; }
  .marquee span { font-size: 12.5px; letter-spacing: 0.34em; }
  .marquee img { width: 28px; height: 28px; }
}

/* Shop window section padding */
@media (max-width: 760px) {
  .shop-window { padding-top: 64px !important; padding-bottom: 16px !important; }
}

/* Shows page */
@media (max-width: 760px) {
  .shows-head { padding-top: 40px !important; padding-bottom: 12px !important; gap: 16px !important; }
  .shows-head .title { font-size: clamp(44px, 12vw, 72px) !important; line-height: 1 !important; }
  .shows-head .title .cn { font-size: 11.5px !important; letter-spacing: 0.28em !important; margin-top: 14px !important; }
  .shows-head .blurb { font-size: 13.5px !important; }
  /* month + day */
  .month-block { padding: 28px 0 !important; }
  .month-label { grid-template-columns: 1fr !important; gap: 6px !important; padding-bottom: 14px !important; }
  .month-label .m-en { font-size: 32px !important; }
  .month-label .m-cn { font-size: 12px !important; padding-bottom: 0 !important; }
  .day { padding: 22px 0 !important; grid-template-columns: 60px 1fr !important; gap: 16px !important; }
  .day-date .num { font-size: 36px !important; }
  .day-date .wd { font-size: 11px !important; letter-spacing: 0.24em !important; margin-top: 6px !important; }
  .event { padding: 14px 0 !important; grid-template-columns: 54px 1fr !important; gap: 12px !important; }
  .event-poster { width: 54px !important; }
  .event:hover { padding-left: 0 !important; }
  .event-main .name { font-size: 16.5px !important; }
  .event-main .name .cn { display: block; margin-left: 0 !important; font-size: 12px !important; margin-top: 2px !important; }
  .event-main .meta { font-size: 10.5px !important; letter-spacing: 0.18em !important; margin-top: 4px !important; }
  .event-main .meta .sep { margin: 0 6px; }
  .event-time { font-size: 13px !important; }
  .event-time .small { font-size: 10px !important; }
  .event-cta { font-size: 11px !important; padding: 7px 14px !important; align-self: flex-start; }
}

/* Shop page */
@media (max-width: 760px) {
  .shop-head { padding-top: 40px !important; padding-bottom: 16px !important; gap: 16px !important; }
  .shop-head .title { font-size: clamp(44px, 12vw, 72px) !important; line-height: 1 !important; }
  .shop-head .title .cn { font-size: 11.5px !important; letter-spacing: 0.28em !important; margin-top: 14px !important; }
  .shop-head .blurb { font-size: 13.5px !important; }
  .shop-filter { top: 56px; }
  .shop-filter-inner { padding: 12px var(--pad-x); gap: 12px; flex-direction: column; align-items: flex-start; }
  .cats { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; width: 100%; }
  .cats::-webkit-scrollbar { display: none; }
  .cats button { white-space: nowrap; flex-shrink: 0; font-size: 11.5px; padding: 6px 12px; }
  .sort { font-size: 11px; }

  .featured { margin-top: 36px !important; }
  .featured-card { grid-template-columns: 1fr !important; }
  .featured-body h2 { font-size: clamp(26px, 7vw, 36px) !important; }

  .grid-wrap { margin-top: 56px !important; margin-bottom: 16px !important; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px !important; }
  .product .info .name { font-size: 13.5px !important; }
  .product .info .name .cn { font-size: 11px !important; }
  .product .info .price { font-size: 13.5px !important; }

  .lookbook { margin-top: 48px !important; }
  .lookbook-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .look.a { grid-column: span 2 !important; aspect-ratio: 16/9 !important; }
}
@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr !important; }
}

/* Footer — small screens — clean single column */
@media (max-width: 760px) {
  .footer-wrap { margin-top: 12vh; height: auto; min-height: 0; padding-bottom: 0; }
  .disc { width: 320vw; height: 320vw; bottom: -120vw; }
  .footer { padding: 22vh var(--pad-x) 30px !important; }
  .disc-logo { width: 52px; height: 52px; margin-bottom: 12px; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 320px !important;
  }
  .f-col-head { font-size: 12px; letter-spacing: 0.28em; margin-bottom: 2px; }
  .f-col-head-en { font-size: 10.5px; margin-bottom: 14px; }
  .f-list { gap: 8px; }
  .f-list li { font-size: 12px; }
  .contact-col .contact-address { font-size: 12px; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    padding-top: 12px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
  }
}

/* WeChat modal on small screens */
@media (max-width: 480px) {
  .modal { padding: 36px 24px 26px; max-width: 320px; }
  .modal-title { font-size: 17px; }
  .modal-qr { width: 180px; height: 180px; margin: 22px auto 16px; }
}

/* Generic body padding tweak on very small screens */
@media (max-width: 380px) {
  :root { --pad-x: 18px; }
}

/* Calendar widget month nav on small screens (shows page top widget) */
@media (max-width: 760px) {
  .calendar-widget { padding: 16px !important; }
  .cal-head h3 { font-size: 18px; }
  .cal-legend { gap: 12px; font-size: 10px; letter-spacing: 0.18em; flex-wrap: wrap; }
}

/* Prevent horizontal page overflow due to dynamic content */
.page { overflow-x: hidden; }
