@font-face {
  font-family: "Chill K Sans";
  src: url("./assets/fonts/ChillKSans.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XSong SimSun";
  src: url("./assets/fonts/XSong-SimSun.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+6708;
}

@font-face {
  font-family: "Alibaba PuHuiTi 2.0";
  src: url("./assets/fonts/AlibabaPuHuiTi-2-55-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN";
  src: url("./assets/fonts/DIN-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #333333;
  --muted: #777777;
  --paper: #e3dbd2;
  --panel: #ffffff;
  --line: rgba(51, 51, 51, 0.22);
  --brand: #532f1e;
  --brand-dark: #342a21;
  --gold: #bb8c69;
  --copper: #b9845d;
  --hero: #583d21;
  --shadow: 0 18px 45px rgba(55, 41, 28, 0.12);
  --font-title: "Chill K Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 18px clamp(18px, 8vw, 210px) 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.theme-hero .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  color: #fff;
}

.theme-paper .site-header {
  background: rgba(227, 219, 210, 0.94);
  border-bottom-color: var(--line);
  color: var(--brand-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 27px;
}

.brand-logo {
  display: none;
  height: 19px;
  width: auto;
}

.theme-hero .brand-logo-light,
.theme-paper .brand-logo-dark,
.page-error .brand-logo-dark {
  display: block;
}

.footer-brand {
  display: block;
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  position: relative;
  padding: 3px 12px;
  color: inherit;
  font-size: 15px;
}

.nav a:not(:last-child)::after {
  content: "｜";
  position: absolute;
  right: -4px;
  color: currentColor;
  opacity: 0.7;
  pointer-events: none;
}

.theme-hero .nav a.active {
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.5);
}

.theme-hero .nav a.active::after,
.theme-hero .nav a:has(+ a.active)::after {
  display: none;
}

.theme-paper .nav a.active,
.theme-paper .nav a:hover {
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  display: grid;
  align-items: start;
  padding: 300px clamp(18px, 8vw, 210px) 72px;
  color: #fff;
  background-color: var(--hero);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(102, 102, 102, 0)), var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.carousel {
  display: block;
  overflow: hidden;
  padding: 0;
  background: var(--hero);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: min(850px, 100svh);
  padding: 0 clamp(18px, 8vw, 210px) 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(102, 102, 102, 0)),
    var(--image);
  background-position: center;
  background-size: cover;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(28, 23, 19, 0.32);
  cursor: pointer;
  font-size: 34px;
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: clamp(16px, 3vw, 34px);
}

.carousel-arrow.next {
  right: clamp(16px, 3vw, 34px);
}

.carousel-dots {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  bottom: clamp(20px, 4vw, 42px);
  z-index: 3;
  display: flex;
  gap: 9px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #f7d793;
}

.hero-content {
  max-width: 821px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  font-weight: 500;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 75px);
  line-height: 1.5;
  letter-spacing: 0;
}

.hero p {
  max-width: 497px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.hero-actions,
.actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button.ghost {
  color: var(--brand);
  border-color: transparent;
  background: #fff;
}

.section {
  padding: clamp(48px, 7vw, 100px) clamp(18px, 8vw, 210px);
}

.section.alt {
  background: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2,
.page-title h1 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
}

.section-head p,
.page-title p,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.card.clickable {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card.clickable:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.card-link {
  display: block;
  height: 100%;
}

.card-image,
.detail-hero-image {
  min-height: 210px;
  background: var(--image), linear-gradient(135deg, #d7c4a2, #536f63);
  background-position: center;
  background-size: cover;
}

.card-body {
  padding: 18px 0 0;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 4px;
  padding: 3px 9px;
  color: var(--brand-dark);
  background: #f0e3d4;
  font-size: 12px;
}

.status.open {
  color: #205b3a;
  background: #dff0e5;
}

.status.pending {
  color: #715314;
  background: #f7e8bd;
}

.status.closed,
.status.soldout {
  color: #6c6c6c;
  background: #ececec;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background: #2f271f;
  color: #fff;
}

.feature-media {
  min-height: 420px;
  background:
    linear-gradient(rgba(39, 53, 45, 0.08), rgba(39, 53, 45, 0.08)),
    var(--image);
  background-position: center;
  background-size: cover;
}

.feature-copy {
  padding-right: clamp(18px, 5vw, 64px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stats strong {
  display: block;
  color: #f7d793;
  font-size: 30px;
}

.page-title {
  padding: 52px clamp(18px, 8vw, 210px) 28px;
}

.page-hero {
  display: grid;
  min-height: 688px;
  align-content: end;
  padding: 0 clamp(18px, 8vw, 210px) 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08)),
    var(--image) center / cover;
}

.page-hero div {
  max-width: 720px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-frame {
  height: 688px;
  min-height: 688px;
  overflow: hidden;
  border-radius: 0;
  align-content: start;
  padding: 159px clamp(18px, 8vw, 210px) 80px;
  background-color: #94622b;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 38%, transparent),
    var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-frame div {
  max-width: 920px;
}

.hero-frame h1 {
  max-width: none;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.42;
}

.hero-frame p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.hero-frame .button.ghost {
  min-height: 36px;
  padding: 8px 22px;
  border-radius: 4px;
  color: var(--brand);
  background: #fff;
}

.hero-frame .about-hero-copy {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: 100%;
  height: 56px;
  margin-bottom: 28px;
  color: #fff;
  font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  text-align: left;
}

.hero-frame .about-hero-copy span {
  display: block;
  white-space: nowrap;
}

.hero-frame .store-hero-copy {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: 100%;
  margin-bottom: 28px;
  color: #fff;
  font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.hero-frame .store-hero-copy span {
  display: block;
  white-space: nowrap;
}

.page-activities {
  background: #e5ded5;
}

.page-shop {
  background: #e5ded5;
}

.page-shop #app {
  min-height: 0;
  overflow: visible;
  background: #e5ded5;
}

.hero-frame.product-detail-hero {
  position: relative;
  height: auto;
  min-height: 0;
  aspect-ratio: 1920 / 647;
  padding: 0;
  overflow: hidden;
  background-color: #2c241c;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
}

.hero-frame.product-detail-hero .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-detail {
  padding: 24px clamp(18px, 8vw, 209px) 96px;
  background: #e8e4dc;
}

.product-detail-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  width: min(1200px, 100%);
  margin: 0 auto 16px;
  color: #9a9086;
  font-size: 12px;
}

.product-detail-crumb a {
  color: #9a9086;
}

.product-detail-card,
.product-attr-card {
  width: min(1200px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 484px;
  gap: 48px;
  align-items: center;
  margin-bottom: 20px;
  padding: 40px;
}

.product-detail-photo {
  overflow: hidden;
  min-height: 0;
  border-radius: 8px;
  background: #efe8de;
}

.product-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 520;
  object-fit: cover;
  object-position: center;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 484px;
  max-width: 100%;
}

.product-detail-copy h2 {
  margin: 0 0 8px;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.product-detail-intro {
  margin: 0 0 16px;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.7;
}

.product-detail-price {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 484px;
  max-width: 100%;
  height: 58px;
  min-height: 58px;
  margin: 0 0 16px;
  padding: 15px 20px 15px 60px;
  border-radius: 5px;
  color: #fff;
  background: #b9845d;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-detail-facts {
  display: grid;
  gap: 2px;
  margin: 0 0 16px;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.8;
}

.product-detail-facts p {
  margin: 0;
}

.product-detail-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  min-height: 28px;
  padding: 4px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgb(185 132 93 / 72%);
  cursor: pointer;
  font-size: 12px;
}

.product-detail-more svg {
  display: block;
  flex: 0 0 14px;
}

.product-attr-card {
  padding: 40px;
  scroll-margin-top: 92px;
}

.product-attr-card h2 {
  margin: 0 0 20px;
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.product-attr-table {
  width: 100%;
  border-collapse: collapse;
}

.product-attr-table th,
.product-attr-table td {
  padding: 12px 18px;
  border: 1px solid #b9845d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.product-attr-table th {
  width: 28%;
  color: #888;
  text-align: center;
  background: #fff;
}

.product-attr-table td {
  color: #333;
}

.product-attr-table tr:first-child th,
.product-attr-table tr:first-child td {
  color: #fff;
  background: #b9845d;
  border-color: #b9845d;
}

.page-content-detail #app {
  background: #e8e4dc;
}

.content-detail-hero {
  background-image:
    var(--image);
}

.content-detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #241b15 0%, rgba(36, 27, 21, 0.94) 36%, rgba(36, 27, 21, 0.22) 66%, rgba(36, 27, 21, 0.04) 100%);
}

.detail-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 9vw, 210px);
  top: 50%;
  width: min(720px, calc(100% - 56px));
  transform: translateY(-50%);
  color: #fff8ef;
}

.detail-hero-copy h1 {
  margin: 0 0 30px;
  color: inherit;
  font-family: var(--font-title);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

.detail-hero-copy p {
  margin: 0;
  color: rgba(255, 248, 239, 0.88);
  font-size: clamp(16px, 2vw, 26px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.content-detail {
  padding-top: 22px;
}

.content-detail-card {
  grid-template-columns: minmax(360px, 463px) minmax(420px, 484px);
  justify-content: space-between;
  min-height: 515px;
}

.content-detail-photo {
  min-height: 420px;
}

.content-detail-photo img {
  height: 100%;
  min-height: 420px;
}

.content-detail-hero.is-teachers {
  background-position: center;
}

.content-detail-hero.is-services::before,
.content-detail-hero.is-activities::before,
.content-detail-hero.is-teachers::before,
.content-detail-hero.is-stores::before {
  background: none;
}

.content-detail-hero.is-services .detail-hero-copy {
  color: #fce7ca;
}

.content-detail-hero .detail-hero-copy.is-baked-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-detail-photo img {
  object-position: center 22%;
}

.content-detail-kicker {
  margin: 0 0 10px;
  color: #b9845d;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.content-detail-band {
  padding-left: 25px;
  font-size: 20px;
}

.content-detail-facts {
  gap: 6px;
  margin-bottom: 20px;
  color: #777;
  font-size: 13px;
}

.content-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.content-detail-actions .button,
.content-detail-actions .status {
  min-height: 32px;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: 13px;
}

.content-detail-actions .button.secondary {
  color: #6f6258;
  background: transparent;
  border-color: rgba(111, 98, 88, 0.28);
}

.content-attr-card {
  margin-top: 20px;
}

.content-attr-table th {
  width: 24%;
}

.content-attr-table td p {
  margin: 0;
}

.content-detail-note {
  width: min(1200px, 100%);
  margin: 20px auto 0;
  padding: 22px 28px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #f4eee6;
}

.content-detail-note span {
  display: block;
  margin-bottom: 8px;
  color: #b9845d;
  font-size: 13px;
}

.content-detail-note p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.content-detail .detail-store-map {
  width: min(1200px, 100%);
  height: 360px;
  margin: 20px auto 0;
}

.page-activities #app {
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: #e5ded5;
}

.activities-list {
  padding: 148px clamp(18px, 8vw, 209px) 77px;
  background: #e5ded5;
}

.activities-list-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: min(1022px, 100%);
  margin: 0 auto;
}

.activities-list-head h2 {
  margin: 0;
  color: #333;
  font-size: 30px;
  letter-spacing: 0.48em;
}

.activities-list .event-list {
  display: grid;
  gap: 40px;
  width: 100%;
  margin: 0;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 347px;
  overflow: hidden;
  border-radius: 5px;
  background: #292722;
  color: #fff;
}

.event-card-image {
  display: block;
  min-height: 0;
  height: 100%;
  background: var(--image) center / cover no-repeat;
}

.event-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 36px 34px 28px;
}

.event-card-body h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
}

.event-card-body time {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.event-card-body p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.75;
}

.event-card-btn {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  align-self: flex-start;
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 5px;
  color: #292722;
  background: #fff;
  font-size: 13px;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.event-actions .event-card-btn {
  margin-top: 0;
}

.event-card-btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
}

.section.all-activities {
  padding: 0 clamp(18px, 8vw, 209px) 80px;
  background: #e5ded5;
  min-height: 0;
}

.section.all-activities.is-compact {
  padding-bottom: 48px;
}

.section.all-activities.is-empty {
  padding-bottom: 40px;
}

.all-activities-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: min(1022px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
}

.all-activities-head h2 {
  margin: 0 0 10px;
  color: #333;
  font-size: 30px;
  letter-spacing: 0.48em;
}

.all-activities-head p {
  margin: 0;
  max-width: 640px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-content: start;
  gap: 34px 20px;
  width: 100%;
  min-height: 0;
}

.activity-tile[hidden] {
  display: none !important;
}

.activity-tile {
  min-width: 0;
}

.activity-tile-image {
  display: block;
  aspect-ratio: 327 / 218;
  background: var(--image) center / cover no-repeat;
}

.activity-tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 8px;
}

.activity-tile h3 {
  margin: 0;
  color: #333;
  font-size: 22px;
  font-weight: 500;
}

.activity-tile-head .status {
  flex-shrink: 0;
  margin-top: 4px;
}

.activity-tile p {
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}

.activity-more {
  display: inline-flex;
  margin-top: 12px;
  color: #999;
  font-size: 13px;
}

.section.service-content {
  padding: 104px clamp(18px, 8vw, 209px) 72px;
}

.service-content-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: min(1021px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
}

.service-content .centered-copy {
  margin-bottom: 0;
}

.service-content .space-grid {
  width: 100%;
}

.section.service-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 54px;
  height: 380px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--copper);
  color: var(--ink);
}

.service-intro .centered-copy {
  margin: 0 auto;
}

.service-intro .centered-copy h2 {
  color: var(--ink);
  letter-spacing: 0.42em;
}

.service-intro .space-en {
  margin-bottom: 0 !important;
  color: rgba(51, 51, 51, 0.74);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.service-intro-grid strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.service-intro-grid p {
  margin: 14px 0 0;
  color: rgba(51, 51, 51, 0.74);
  font-size: 13px;
  line-height: 1.85;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 32px clamp(18px, 8vw, 210px) 24px;
}

.search-input,
.field,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 12px;
  color: #4f4942;
  background: #fff;
  cursor: pointer;
}

.filter-button.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.listing {
  padding: 0 clamp(18px, 8vw, 210px) clamp(44px, 7vw, 86px);
}

.empty,
.error-page-inline {
  border: 1px dashed #d3c8bb;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
}

.error-page {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  min-height: min(68vh, 620px);
  width: min(640px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 18px 96px;
  text-align: center;
}

.error-page .error-kicker,
.error-page-inline .error-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.error-page h1,
.error-page-inline h2 {
  margin: 0;
  font-family: var(--font-title);
  color: var(--brand-dark);
}

.error-page h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.error-page-inline {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  min-height: 0;
  margin: 12px 0;
  padding: 40px 24px;
  box-sizing: border-box;
}

.error-page-inline h2 {
  font-size: 24px;
}

.error-page p,
.error-page-inline p {
  margin: 0;
  max-width: 36em;
  color: var(--muted);
  line-height: 1.8;
}

.error-page .actions,
.error-page-inline .actions {
  justify-content: center;
  margin-top: 8px;
}

.detail {
  padding: 36px clamp(18px, 8vw, 210px) 70px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.side-panel,
.contact-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(56, 44, 32, 0.06);
}

.form-panel {
  display: grid;
  gap: 14px;
}

.detail-content,
.side-panel,
.contact-card,
.form-panel {
  padding: 22px;
}

.detail-hero-image {
  min-height: 360px;
  border-radius: 8px 8px 0 0;
}

.service-detail {
  padding-top: 32px;
  padding-bottom: 56px;
}

.service-detail-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.service-detail-stage {
  display: grid;
  gap: 10px;
}

.service-detail-hero {
  min-height: 0;
  aspect-ratio: 21 / 8;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(55, 41, 28, 0.08);
}

.service-detail-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-thumbs button {
  min-height: 90px;
  border-radius: 8px;
}

.service-detail-body {
  display: grid;
  gap: 20px;
  width: 100%;
}

.service-detail-head {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(51, 51, 51, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(55, 41, 28, 0.08);
}

.detail-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.detail-crumb a {
  color: var(--gold);
}

.detail-crumb a:hover {
  color: var(--brand-dark);
}

.detail-source {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(187, 140, 105, 0.34);
  border-radius: 999px;
  background: #f7f1ea;
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1;
}

.detail-source span,
.detail-source strong {
  padding: 8px 12px;
  white-space: nowrap;
}

.detail-source strong {
  border-left: 1px solid rgba(187, 140, 105, 0.34);
  color: var(--gold);
  font-weight: 500;
}

.service-detail-hero.is-teachers {
  background-position: center 18%;
}

.detail-store-map {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: #d8d0c6;
}

.detail-store-map .store-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-head .eyebrow {
  margin-bottom: 10px;
}

.service-detail-body h1 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.25;
  color: var(--brand-dark);
}

.service-detail-intro {
  margin: 0;
  max-width: 46em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.service-detail-head .actions {
  flex-shrink: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  padding-top: 4px;
}

.service-detail-head .actions .button,
.service-detail-head .actions .status {
  min-width: 168px;
}

.service-detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.service-detail-highlights div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 8px;
  background: #fbf8f3;
}

.service-detail-highlights span,
.service-detail-note span,
.service-detail-related .related-list small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.service-detail-highlights strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-detail-note {
  margin: 0;
  padding: 18px 22px;
  border-radius: 12px;
  background: #f2ebe3;
}

.service-detail-note p {
  margin: 0;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.75;
}

.service-detail-sheet {
  display: grid;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.service-detail-sheet > div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}

.service-detail-sheet > div:last-child {
  border-bottom: 0;
}

.service-detail-sheet dt {
  padding-top: 2px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-detail-sheet dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-dark);
}

.service-detail-sheet dd p {
  margin: 0;
}

.service-detail-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-steps li {
  position: relative;
  padding-left: 1.6em;
}

.service-detail-steps li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  font-family: DIN, var(--font-body);
  content: counter(list-item, decimal-leading-zero);
}

.service-detail-related {
  margin: 0;
  padding-top: 4px;
  border-top: 0;
}

.service-detail-related h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--brand-dark);
}

.service-detail-related .related-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-related .related-list a {
  min-height: 96px;
  background: #fff;
}

.service-detail-related .related-list strong {
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.45;
}

.service-detail-related .related-list span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.gallery-main {
  min-height: 300px;
  border-radius: 8px;
  background: var(--image), linear-gradient(135deg, #d7c4a2, #536f63);
  background-position: center;
  background-size: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumbs button {
  min-height: 82px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--image), #e7dfd3;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--brand);
}

.related-section {
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-list a {
  display: grid;
  gap: 6px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #faf8f3;
}

.related-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-size: 13px;
}

.info-list dd {
  margin: 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid > * {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.contact-action,
.qr-button,
.qr-inline,
.text-action {
  text-align: left;
  cursor: pointer;
}

.contact-action {
  display: grid;
  gap: 5px;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-action small {
  color: var(--brand);
}

.contact-grid strong {
  display: block;
  margin-bottom: 8px;
}

.qr span,
.mini-qr,
.large-qr {
  display: block;
  width: 68px;
  height: 68px;
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 17px 17px,
    linear-gradient(#111 8px, transparent 8px) 0 0 / 17px 17px,
    #fff;
  border: 7px solid #fff;
  outline: 1px solid var(--line);
}

.qr-button {
  border: 0;
  color: inherit;
  background: transparent;
}

.mini-qr {
  width: 52px;
  height: 52px;
  border-width: 5px;
}

.large-qr {
  width: min(280px, 72vw);
  height: min(280px, 72vw);
  margin: 18px auto 22px;
  border-width: 18px;
  background-size: 38px 38px, 38px 38px, auto;
}

.qr-panel {
  text-align: center;
}

.qr-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  border: 0;
  background: transparent;
}

.text-action {
  border: 0;
  padding: 0;
  color: var(--brand);
  background: transparent;
}

.contact-action.copied,
.text-action.copied {
  border-color: var(--brand);
}

.contact-intro {
  display: grid;
  justify-items: center;
  padding: 112px clamp(18px, 8vw, 210px) 36px;
  text-align: center;
}

.contact-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  color: var(--brand-dark);
}

.contact-intro > p:not(.eyebrow):not(.contact-hours) {
  max-width: 36em;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.contact-hours {
  margin: 22px 0 0;
  padding: 8px 16px;
  border: 1px solid rgba(187, 140, 105, 0.45);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 12px clamp(18px, 8vw, 210px) 28px;
}

.contact-method {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 188px;
  padding: 28px 20px 24px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(55, 41, 28, 0.05);
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-method:hover,
.contact-method.copied {
  border-color: rgba(187, 140, 105, 0.7);
  box-shadow: 0 16px 32px rgba(55, 41, 28, 0.08);
  transform: translateY(-3px);
}

.contact-method img,
.contact-method-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-method span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.contact-method strong {
  max-width: 16em;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  word-break: break-word;
}

.contact-method small {
  color: var(--muted);
  font-size: 12px;
}

.contact-method.copied small {
  color: var(--brand);
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 36px;
  padding-bottom: 72px;
}

.contact-form-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(55, 41, 28, 0.06);
}

.contact-form-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--brand-dark);
}

.contact-form-copy .muted {
  margin: 0;
  max-width: 36em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

.contact-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-field span {
  color: var(--brand-dark);
  font-size: 13px;
}

.contact-form-grid .form-hint {
  margin-top: 0;
}

.contact-field-message {
  grid-column: 1 / -1;
}

.contact-form-panel .field {
  min-height: 52px;
  border-color: rgba(51, 51, 51, 0.14);
  background: #fbf8f3;
}

.contact-form-panel .field:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.contact-form-panel textarea.field {
  min-height: 168px;
  resize: vertical;
}

.contact-form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.contact-form-panel .actions {
  justify-content: flex-start;
  margin-top: 0;
}

.contact-form-panel .button {
  min-width: 168px;
}

.contact-form-panel .error-page-inline {
  margin: 0;
}

.privacy-check {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-check a {
  color: var(--brand);
}

.contact-visit {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  background: #d8d0c6;
  box-shadow: 0 14px 34px rgba(55, 41, 28, 0.08);
}

.contact-map-card .store-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-visit-card,
.contact-wechat-card {
  padding: 22px 24px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 12px;
  background: #f7f1ea;
}

.contact-visit-card {
  display: grid;
  gap: 18px;
}

.contact-visit-card span,
.contact-wechat-card small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.contact-visit-card strong,
.contact-visit-card p,
.contact-wechat-card strong {
  display: block;
  margin: 6px 0 0;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-wechat-card {
  display: flex;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.contact-wechat-qr,
.contact-wechat-card .mini-qr {
  display: block;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-width: 8px;
}

.contact-wechat-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  letter-spacing: 0;
}

.contact-store-section {
  padding-top: 48px;
}

.contact-store-list {
  display: grid;
  gap: 22px;
}

.contact-store {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 168px;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-store-photo {
  display: block;
  min-height: 188px;
  border-radius: 10px;
  background: var(--image) center / cover no-repeat, linear-gradient(135deg, #d7c4a2, #536f63);
}

.contact-store-body {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 8px 8px 8px 0;
}

.contact-store-body h3 {
  margin: 0;
  font-size: 24px;
  color: var(--brand-dark);
}

.contact-store-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-store-body .actions {
  margin-top: 10px;
}

.contact-store-actions {
  display: grid;
  gap: 10px;
  align-content: center;
  margin-top: 0;
}

.form-hint {
  color: var(--muted);
  margin-top: -8px;
}

.form-hint.error {
  color: #b42318;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  max-width: min(420px, calc(100vw - 32px));
  border-radius: 6px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(33, 26, 22, 0.94);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 46px 20px;
  margin: 0;
  padding: 8px 0 0;
  overflow: visible;
  border: 0;
}

.timeline article {
  position: relative;
  min-width: 0;
  padding: 0 0 0;
  text-align: center;
}

.timeline article strong {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 0 38px;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.timeline article p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.75;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 43px;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 5px solid #e5ded5;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(105, 65, 42, 0.14), 0 8px 16px rgba(105, 65, 42, 0.16);
  transform: translate(-50%, -50%);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 43px;
  right: 10px;
  left: 0;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(105, 65, 42, 0), rgba(105, 65, 42, 0.22) 14%, rgba(105, 65, 42, 0.22) 86%, rgba(105, 65, 42, 0));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(27, 23, 19, 0.45);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 64px) 24px;
  color: #efe7dc;
  background: #2a211b;
}

.about-intro {
  display: grid;
  grid-template-columns: 309px minmax(280px, 485px) auto;
  justify-content: space-between;
  gap: 48px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 72px;
}

.about-intro figure {
  margin: 0;
}

.about-intro-photo {
  width: 309px;
  max-width: 100%;
  height: 315px;
  background: #947d67 var(--image) center / cover no-repeat;
}

.about-intro figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  font-size: 9px;
}

.about-intro-tag::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-1px);
}

.about-intro-copy h2 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: 35px;
  font-weight: 500;
}

.about-intro-copy p {
  margin: 0;
  max-width: 485px;
  font-size: 14px;
  line-height: 22.5px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--brand-dark);
}

.more-link {
  justify-content: space-between;
  width: 147px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
}

.slash-mark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 2px;
}

.slash-mark span {
  display: block;
  height: 32px;
  transform: skewX(-23deg);
  background: #bb845f;
}

.slash-mark span:nth-child(1) {
  width: 18px;
}

.slash-mark span:nth-child(2) {
  width: 10px;
  background: #c49e80;
}

.slash-mark span:nth-child(3) {
  width: 4px;
  background: #d5bcaa;
}

.welcome-section {
  overflow: hidden;
  padding: 24px 0 80px;
}

.welcome-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: 0 clamp(18px, 8vw, 210px);
}

.welcome-kicker {
  margin: 0 0 12px;
  color: #aaa;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.welcome-kicker b {
  color: var(--gold);
  font-weight: 500;
}

.welcome-kicker-end {
  margin: 0 0 18px;
}

.welcome-head h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--brand-dark);
}

.photo-wall {
  height: 562px;
  overflow: hidden;
  background: #333;
}

.photo-wall-track {
  display: flex;
  gap: 5px;
  width: max(1605px, 112vw);
  height: 562px;
  margin-left: max(-87px, -6vw);
}

.photo-col {
  flex: 1 0 0;
  min-width: 0;
  height: 562px;
  overflow: hidden;
}

.photo-col-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(calc(var(--shift, 0px) - 232px));
}

.photo-col-inner span {
  display: block;
  flex: 0 0 227px;
  height: 227px;
  background: #e1c09e var(--image) center / cover no-repeat;
}

.voice-section {
  overflow: hidden;
  text-align: center;
}

.voice-section h2 {
  margin-bottom: 42px;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: 0.32em;
}

.voice-layout {
  display: grid;
  grid-template-columns: 699px 826px 699px;
  gap: 20px;
  align-items: center;
  width: 2264px;
  height: 567px;
  margin-inline: 50%;
  transform: translateX(-50%);
}

.voice-side,
.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
  overflow: hidden;
  border-radius: 24px;
  background: var(--image) center / cover;
}

.voice-side {
  height: 480px;
  min-height: 480px;
  padding: 0 24px 22px;
  cursor: pointer;
}

.voice-card {
  gap: 20px;
  height: 567px;
  min-height: 567px;
  padding: 0 40px 28px;
  background-color: #e1c09e;
}

.voice-card::before,
.voice-side::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 210px;
  background: linear-gradient(to top, #642b0d 3.571%, rgba(100, 43, 13, 0));
}

.voice-card > *,
.voice-side > * {
  position: relative;
  z-index: 1;
}

.voice-card .voice-nav {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  top: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #2c2c2c;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.voice-card .voice-nav svg {
  display: block;
  width: 16px;
  height: 10px;
}

.voice-card .voice-nav.prev {
  left: 9px;
}

.voice-card .voice-nav.next {
  right: 9px;
  left: auto;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-person img {
  width: 47px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.voice-person strong {
  display: block;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.voice-person span {
  display: block;
  color: #fff;
  font-size: 13px;
}

.voice-card p,
.voice-side p {
  max-width: 751px;
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
}

.voice-card p {
  max-width: 480px;
}

.voice-side p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.voice-side .voice-person strong {
  font-size: 18px;
}

.voice-side .voice-person img {
  width: 38px;
  height: 38px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.space-card {
  position: relative;
  display: block;
  min-height: 322px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--image) center / cover;
}

.space-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 70px;
  background: linear-gradient(#422918, transparent);
}

.space-card span,
.space-card strong {
  position: relative;
  display: block;
  text-align: center;
  letter-spacing: 0.42em;
}

.space-card span {
  margin-top: 30px;
  font-size: 9px;
}

.space-card strong {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
}

.about-mosaic-section {
  overflow: hidden;
  padding-bottom: 0;
}

.about-mosaic {
  display: grid;
  gap: 30px;
  overflow: hidden;
  margin: 0 max(-80px, -6vw) 80px;
}

.about-mosaic-row {
  overflow: hidden;
}

.about-mosaic-track {
  display: flex;
  width: max-content;
  animation: about-mosaic-scroll 42s linear infinite;
}

.about-mosaic-row:nth-child(even) .about-mosaic-track {
  animation-duration: 48s;
  animation-direction: reverse;
}

.about-mosaic:hover .about-mosaic-track {
  animation-play-state: paused;
}

.about-mosaic-group {
  display: flex;
  gap: 8px;
  padding-right: 8px;
}

.about-mosaic-group span {
  display: block;
  flex: 0 0 380px;
  width: 380px;
  height: 232px;
  background: #fff var(--image) center / cover no-repeat;
}

@keyframes about-mosaic-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-mosaic-track {
    animation: none;
  }
}

.centered-copy {
  max-width: 415px;
  margin: 0 auto 50px;
  text-align: center;
}

.centered-copy h2 {
  margin-bottom: 10px;
  font-family: var(--font-title);
  font-size: 30px;
  letter-spacing: 0.48em;
}

.centered-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.space-en {
  margin-bottom: 10px !important;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.page-hero h1 {
  max-width: 12ch;
}

.hero-frame h1 {
  max-width: none;
}

.contact-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.contact-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  display: grid;
  gap: 10px;
}

.work-card .card-image {
  min-height: 335px;
}

.newsletter-band {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 100px 18px 80px;
  color: #333;
  text-align: center;
  background: var(--copper);
}

.newsletter-band p,
.newsletter-band h2 {
  margin: 0;
}

.newsletter-band p {
  font-size: 10px;
}

.newsletter-band h2 {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
}

.newsletter-band span {
  font-size: 10px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 79px;
  width: 208px;
  margin-top: 56px;
  border: 1px solid #333;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 30px;
  border: 0;
  padding: 0 12px;
  color: #333;
  background: transparent;
  font-size: 8px;
}

.newsletter-form input::placeholder {
  color: #333;
}

.newsletter-form button {
  color: #fff;
  background: #333;
  cursor: pointer;
}

.page-about,
.page-about #app {
  overflow-x: visible;
  background: #e5ded5;
}

.about-philosophy,
.about-features,
.about-contact {
  padding: 100px clamp(18px, 8vw, 210px) 0;
  background: #e5ded5;
}

.about-contact {
  padding-bottom: 100px;
  scroll-margin-top: 92px;
}

.about-contact .about-message-form,
.about-contact .about-store-section {
  display: grid;
  width: min(1100px, 100%);
  margin: 56px auto 0;
  text-align: left;
}

.about-contact .about-store-section {
  padding: 0;
}

.about-contact .about-store-section .section-head {
  margin-bottom: 20px;
}

.about-contact .about-store-section h2 {
  color: var(--brand-dark);
}

.about-contact-frame,
.about-philosophy-frame {
  width: min(1020px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-philosophy-frame h2,
.about-contact-frame h2 {
  margin: 0 0 16px;
  color: #333;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.5;
}

.about-contact-frame h2 {
  letter-spacing: 0.16em;
}

.about-philosophy-sub {
  margin: 0;
  color: #777;
  font-size: 16px;
  letter-spacing: 0.18em;
}

.about-philosophy-frame .about-philosophy-copy {
  width: min(770px, 100%);
  max-width: 770px;
  margin: 26px auto 0;
  color: #777777;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.about-philosophy-frame p {
  margin: 0 auto 20px;
  color: #777;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: 24px;
  width: min(770px, 100%);
  margin: 56px auto 0;
}

.about-stats > span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #777777;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.about-stats strong,
.about-stat-value {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 48px;
  color: #333333;
  font-weight: 500;
}

.about-stat-num {
  font-family: "DIN", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 48px;
}

.about-stats .about-stat-plus {
  align-self: flex-start;
  margin-top: 4px;
  color: #333333;
  font-family: "DIN", sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}

.about-stats .about-stat-unit {
  margin-left: 1px;
  color: #333333;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 25px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 35px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.about-feature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: var(--image) center / cover no-repeat;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(transparent, rgba(20, 14, 10, 0.78));
}

.about-feature-card div {
  position: absolute;
  right: 16px;
  bottom: 28px;
  left: 16px;
  z-index: 1;
  text-align: center;
}

.about-feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.about-feature-card span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  opacity: 0.92;
}

.about-contact-frame p {
  margin: 0 auto 64px;
  max-width: 560px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.page-about .contact-icons {
  display: grid;
  grid-template-columns: 1fr 99px 1fr;
  align-items: start;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0;
}

.page-about .contact-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 0;
  color: #333;
  text-align: center;
}

.page-about .contact-icon-phone {
  justify-self: start;
}

.page-about .contact-icon-mail {
  width: 99px;
  justify-self: center;
}

.page-about .contact-icon-addr {
  justify-self: end;
}

.page-about .contact-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.page-about .contact-icons strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.page-about .contact-icons span {
  color: #333333;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.page-about .contact-icon-mail span {
  max-width: 99px;
  overflow: visible;
  white-space: nowrap;
}

.page-about .contact-icon-addr span {
  max-width: 168px;
  white-space: normal;
}

.about-brand-map {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 62px;
  width: min(1020px, 100%);
  height: 259px;
  margin: 100px auto 0;
  padding: 0;
}

.about-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 2 1 0;
  min-width: 0;
  height: 259px;
}

.about-brand-copy > p:first-child {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.about-book-btn {
  display: inline-flex;
  margin: 16px 0 0;
  min-height: 32px;
  padding: 6px 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #532f1e;
  font-size: 13px;
}

.about-brand-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: auto;
}

.about-brand-meta {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.about-brand-meta a {
  color: #777;
}

.about-wechat-qr {
  display: grid;
  justify-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: #777;
  background: transparent;
  cursor: pointer;
}

.about-wechat-qr .mini-qr {
  width: 72px;
  height: 72px;
  border-width: 0;
  outline: 0;
  background-color: #d8d0c6;
}

.about-wechat-qr small {
  font-size: 11px;
  white-space: nowrap;
}

.about-mini-map {
  position: relative;
  flex: 3 1 0;
  width: auto;
  min-width: 0;
  height: 259px;
  overflow: hidden;
  background: #d8d0c6;
}

.about-mini-map .store-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-media {
  min-height: 420px;
  background: var(--image) center / cover;
}

.about-story h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
}

.card-image.portrait {
  min-height: 320px;
}

.page-stores,
.page-stores #app {
  background: #e5ded5;
}

.store-map {
  position: relative;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 404px;
  overflow: hidden;
  background: #d8d0c6;
}

.store-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.store-map-static {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--image), linear-gradient(135deg, #efe7dd, #d8cbbb);
  background-position: center;
  background-size: cover;
}

.store-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 22px;
  height: 22px;
  margin: -26px 0 0 -11px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #532f1e;
  box-shadow: 0 10px 24px rgba(55, 41, 28, 0.28);
  transform: rotate(-45deg);
}

.store-map-pin::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #bb8c69;
  content: "";
}

.store-map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 180px;
  max-width: min(360px, calc(100% - 48px));
  margin: 10px 0 0;
  padding: 10px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #342a21;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(55, 41, 28, 0.12);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.store-map-label strong {
  font-size: 15px;
  font-weight: 600;
}

.store-map-label span {
  color: #6e6258;
}

.store-map-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
  background: rgba(68, 27, 0, 0.88);
  font-size: 13px;
}

.store-section {
  padding-top: 72px;
  padding-bottom: 96px;
  background: #e5ded5;
}

.store-head {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.store-head h2 {
  margin: 0;
  color: #333;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.42em;
}

.store-cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  color: #777;
  font-size: 14px;
}

.store-city-filter {
  margin: 0;
  padding: 0 12px;
  border: 0;
  color: #777;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.store-city-filter:first-child {
  padding-left: 0;
}

.store-city-filter + .store-city-filter {
  border-left: 1px solid #c1c1c1;
}

.store-city-filter.active {
  color: #441b00;
  font-weight: 500;
}

.store-empty {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.store-list {
  display: grid;
  gap: 0;
}

.store-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 160px;
  gap: 48px;
  align-items: start;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.22);
}

.store-row + .store-row {
  padding-top: 28px;
}

.store-city {
  padding-top: 2px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.store-info h3 {
  margin: 0 0 48px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.store-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.store-info p + p {
  margin-top: 0;
}

.store-thumb {
  display: block;
  width: 160px;
  height: 160px;
  background: var(--image) center / cover no-repeat;
}

.moments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}

.moment-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.moment-image {
  width: 100%;
  min-height: 253px;
  background: var(--image) center / cover no-repeat;
}

.moment-card strong {
  margin-top: 11px;
  font-size: 15px;
  font-weight: 500;
}

.moment-card span {
  position: static;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.event-list {
  display: grid;
  gap: 30px;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.event-image {
  position: relative;
  display: block;
  min-height: 280px;
  background: var(--image) center / cover;
}

.event-image::before,
.teacher-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(35, 24, 18, 0.58));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.event-row h3 {
  margin: 14px 0 10px;
  font-size: clamp(24px, 3vw, 38px);
}

.event-row p {
  color: var(--muted);
  line-height: 1.8;
}

.event-row dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.event-row dt {
  color: var(--muted);
  font-size: 12px;
}

.event-row dd {
  margin: 4px 0 0;
  line-height: 1.5;
}

.shop-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(380px, 1fr);
  gap: 48px;
  align-items: center;
}

.shop-feature h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
}

.shop-feature-image {
  min-height: 360px;
  background: var(--image) center / cover;
}

.shop-intro {
  display: block;
  width: auto;
  margin: 0;
  padding: clamp(48px, 7vw, 100px) clamp(18px, 8vw, 210px);
  background: #e5ded5;
}

.shop-intro-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 79px;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 0;
}

.shop-intro-photo {
  flex: 0 0 322px;
  width: 322px;
  height: 322px;
  background: var(--image) center / cover no-repeat;
}

.shop-intro p {
  margin: 0;
  max-width: 418px;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}

.shop-artist,
.shop-works,
.shop-goods {
  background: #e5ded5;
}

.shop-goods {
  min-height: 0;
  height: auto;
  overflow: visible;
}

.shop-goods.is-compact {
  padding-bottom: 48px;
}

.shop-goods.is-empty {
  padding-bottom: 40px;
}

.shop-artist,
.shop-goods {
  padding-left: clamp(18px, 8vw, 210px);
  padding-right: clamp(18px, 8vw, 210px);
}

.shop-artist-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
}

.shop-artist-frame h2 {
  margin: 0;
  color: #333;
  font-size: 30px;
  letter-spacing: 0.48em;
}

.shop-works .section-head,
.shop-works .works-grid {
  width: min(1021px, 100%);
  margin-inline: auto;
}

.shop-goods-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: min(1024px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
}

.shop-goods-frame h2 {
  margin: 0;
  width: 100%;
  color: #333;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.49em;
  line-height: 43px;
  text-align: left;
}

.shop-works .section-head h2 {
  margin: 0;
  width: 100%;
  color: #333;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.49em;
  line-height: 43px;
  text-align: left;
}

.artist-banner {
  position: relative;
  width: 100%;
  height: 494px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.42), rgba(20, 14, 10, 0.08) 46%, transparent),
    var(--image) center / cover no-repeat;
}

.artist-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.artist-arrow.prev {
  left: 16px;
}

.artist-arrow.next {
  right: 16px;
}

.artist-arrow[hidden] {
  display: none;
}

.artist-copy {
  position: absolute;
  top: 155px;
  left: 89px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 311px;
  gap: 20px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  color: #fff;
}

.artist-copy h3 {
  margin: 0;
  width: 100%;
  color: #fff;
  font-family: "XSong SimSun", "Songti SC", "Noto Serif SC", SimSun, "STSong", serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 68px;
}

.artist-copy p {
  margin: 0;
  width: 100%;
  color: #fff;
  font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 14px;
  text-align: left;
  white-space: pre-line;
}

.works-grid .empty,
.works-grid .error-page-inline,
.shop-goods-grid .empty,
.shop-goods-grid .error-page-inline,
.grid .error-page-inline {
  grid-column: 1 / -1;
}

.work-card strong {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.shop-goods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 327px));
  grid-auto-rows: auto;
  align-content: start;
  justify-content: start;
  gap: 36px 20px;
  width: 100%;
  min-height: 0;
  height: auto;
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 327px;
  min-width: 0;
}

.shop-item-image {
  width: 327px;
  height: 379px;
  overflow: hidden;
  border-radius: 0;
  background: #55483c var(--image) center / cover no-repeat;
}

.shop-item strong {
  display: block;
  margin-top: 14px;
  color: #55483c;
  font-size: 16px;
  font-weight: 500;
}

.shop-item p {
  margin: 8px 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}

.teacher-section {
  padding-top: clamp(48px, 7vw, 100px);
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 40px clamp(28px, 8vw, 140px);
  max-width: 780px;
  margin: 0 auto;
}

.teacher-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.teacher-avatar {
  position: relative;
  display: block;
  width: 98px;
  aspect-ratio: 1;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--image) center / cover;
}

.teacher-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.teacher-card strong {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
}

.teacher-card p {
  max-width: 150px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 12px;
  color: var(--brand-dark);
  background: transparent;
  cursor: pointer;
}

.event-image:hover::before,
.teacher-avatar:hover::before {
  opacity: 1;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer p {
  color: #cbbcac;
  line-height: 1.7;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.copyright .icp-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #f7f1ea;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(55, 41, 28, 0.1);
}

.home-guide-photo {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--image), linear-gradient(135deg, #d7c4a2, #536f63);
  background-position: center;
  background-size: cover;
}

.home-guide-card.is-teachers .home-guide-photo {
  background-position: center 18%;
}

.home-guide-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  padding: 16px 16px 18px;
}

.home-guide-copy > span:first-child,
.honor-grid article strong {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.home-guide-card strong {
  font-size: 18px;
  line-height: 1.4;
}

.home-guide-card small {
  margin-top: auto;
  opacity: 0.7;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.honor-grid article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
  padding: 20px 18px;
  background: #f7f1ea;
  color: inherit;
}

.activity-filters {
  margin: 0 0 28px;
}

.store-districts {
  margin: 12px 0 0;
}

.about-story .timeline,
.about-honors .honor-grid {
  margin-top: 24px;
}

.about-story .timeline {
  margin-top: 36px;
  padding-bottom: 8px;
}

@media (max-width: 980px) {
  .about-story .timeline {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px 14px;
  }

  .timeline article strong {
    font-size: 22px;
  }

  .timeline article p {
    padding: 0 8px;
  }

  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .detail-hero-copy h1 {
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }

  .detail-hero-copy p {
    max-width: 22em;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .content-detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-detail-copy,
  .product-detail-price {
    width: 100%;
  }

  .product-detail-photo img {
    min-height: 0;
  }

  .content-detail-photo {
    min-height: 0;
  }

  .content-detail-photo img {
    min-height: 320px;
  }

  .product-attr-card {
    padding: 22px 16px 28px;
  }

  .product-attr-table th {
    width: 38%;
  }

  .nav a {
    padding: 3px 8px;
    font-size: 14px;
  }

  .card {
    grid-column: span 6;
  }

  .service-detail-shell {
    grid-template-columns: 1fr;
  }

  .service-detail-stage {
    position: static;
  }

  .feature-band,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }

  .contact-workspace,
  .contact-store {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    padding-top: 96px;
    padding-bottom: 28px;
  }

  .service-detail-head,
  .service-detail-sheet > div,
  .service-detail-related .related-list {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    aspect-ratio: 16 / 10;
  }

  .service-detail-sheet > div {
    gap: 6px;
    padding: 16px 20px;
  }

  .service-detail-head {
    padding: 22px;
  }

  .service-detail-head .actions {
    justify-content: flex-start;
  }

  .feature-copy {
    padding: 0 clamp(18px, 5vw, 64px) 40px;
  }

  .contact-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-guide-grid,
  .honor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats,
  .about-feature-grid,
  .about-intro,
  .voice-layout,
  .about-story,
  .space-grid,
  .works-grid,
  .contact-icons {
    grid-template-columns: 1fr 1fr;
  }

  .page-about .contact-icons {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
  }

  .page-about .contact-icon-phone,
  .page-about .contact-icon-mail,
  .page-about .contact-icon-addr {
    justify-self: center;
  }

  .about-intro {
    justify-content: start;
  }

  .slash-mark {
    display: none;
  }

  .about-brand-map {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    height: auto;
  }

  .about-brand-copy {
    height: auto;
  }

  .about-mini-map {
    flex-basis: auto;
    width: 100%;
    height: 240px;
  }

  .photo-wall {
    height: 420px;
  }

  .photo-wall-track {
    height: 420px;
  }

  .photo-col {
    height: 420px;
  }

  .voice-layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-inline: 0;
    transform: none;
  }

  .voice-side {
    display: none;
  }

  .store-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-info h3 {
    margin-bottom: 16px;
  }

  .section.service-intro {
    height: auto;
    overflow: visible;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .service-intro-grid,
  .moments-grid,
  .event-card,
  .shop-feature,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .shop-goods-grid {
    grid-template-columns: repeat(2, minmax(0, 327px));
    justify-content: start;
  }

  .event-card {
    height: auto;
  }

  .event-card-image {
    min-height: 220px;
  }

  .teacher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .theme-hero .nav {
    background: #2a211b;
    color: #fff;
  }

  .nav a:not(:last-child)::after {
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 42px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    align-items: end;
    padding: 120px 18px 52px;
  }

  .hero-slide {
    min-height: calc(100svh - 64px);
    align-items: end;
    padding-bottom: 68px;
  }

  .carousel-arrow {
    top: auto;
    bottom: 20px;
    width: 38px;
    height: 38px;
    font-size: 28px;
    transform: none;
  }

  .carousel-dots {
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
  }

  .section-head,
  .toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card,
  .contact-grid > *,
  .site-footer > * {
    grid-column: span 1;
  }

  .grid,
  .contact-grid,
  .contact-grid.compact,
  .contact-form-grid,
  .related-list,
  .stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .actions .button {
    width: 100%;
  }

  .contact-store-actions .button {
    width: 100%;
  }

  .hero-content {
    margin-left: 0;
  }

  .home-guide-grid {
    grid-template-columns: 1fr;
  }

  .detail-store-map {
    height: 220px;
  }

  .contact-intro {
    padding: 84px 18px 24px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-intro h1 {
    font-size: 40px;
  }

  .contact-methods {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-method {
    min-height: 0;
    padding: 22px 16px;
  }

  .contact-workspace {
    gap: 22px;
    padding-top: 16px;
    padding-bottom: 44px;
  }

  .contact-form-panel {
    padding: 22px 18px;
  }

  .contact-form-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-map-card {
    min-height: 240px;
  }

  .contact-wechat-card {
    align-items: center;
  }

  .contact-store {
    padding: 14px;
  }

  .contact-store-photo {
    min-height: 180px;
  }

  .service-detail-highlights,
  .service-detail-thumbs {
    grid-template-columns: 1fr;
  }

  .store-map {
    height: 360px;
    min-height: 280px;
  }

  .store-cities {
    gap: 8px 0;
  }

  .page-hero {
    min-height: 360px;
  }

  .section.service-content {
    padding: 48px 18px;
  }

  .hero-frame {
    height: auto;
    min-height: 360px;
    padding-top: 110px;
  }

  .hero-frame.product-detail-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1920 / 647;
    padding: 0;
  }

  .hero-frame .about-hero-copy {
    display: block;
    width: auto;
    height: auto;
    line-height: 1.4;
  }

  .hero-frame .about-hero-copy span {
    display: inline;
    white-space: normal;
  }

  .hero-frame .store-hero-copy {
    width: auto;
  }

  .hero-frame .store-hero-copy span {
    display: inline;
    white-space: normal;
  }

  .about-philosophy,
  .about-features,
  .about-contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-about .contact-icons {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-brand-map {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    height: auto;
    margin-top: 64px;
  }

  .about-brand-copy {
    flex: 1 1 auto;
    height: auto;
    align-items: flex-start;
  }

  .about-brand-foot {
    margin-top: 24px;
  }

  .about-mini-map {
    flex-basis: auto;
    width: 100%;
    height: 240px;
  }

  .shop-artist,
  .shop-goods {
    padding-left: 18px;
    padding-right: 18px;
  }

  .shop-intro-frame {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .shop-intro-photo {
    flex-basis: auto;
    width: 100%;
    max-width: 322px;
    height: auto;
    aspect-ratio: 1;
  }

  .artist-banner {
    height: auto;
    min-height: 360px;
    padding: 56px 52px;
  }

  .artist-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(311px, 100%);
  }

  .page-activities #app {
    min-height: 0;
    overflow: visible;
  }

  .activities-list {
    padding: 48px 18px;
  }

  .section.all-activities {
    padding: 0 18px 48px;
  }

  .activity-grid,
  .shop-goods-grid {
    grid-template-columns: 1fr;
  }

  .shop-item,
  .shop-item-image {
    width: 100%;
    max-width: 327px;
  }

  .about-stats,
  .about-feature-grid,
  .about-intro,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-card {
    min-height: 280px;
  }

  .about-intro-photo,
  .welcome-head,
  .photo-wall {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-mosaic {
    margin-left: 0;
    margin-right: 0;
  }

  .about-mosaic-group span {
    flex-basis: 280px;
    width: 280px;
    height: 176px;
  }

  .welcome-head {
    display: grid;
    padding: 0 18px;
  }

  .welcome-kicker-end {
    display: none;
  }

  .voice-card {
    min-height: 420px;
    padding: 0 18px 20px;
  }

  .voice-card .voice-nav {
    top: 50%;
    transform: translateY(-50%);
  }

  .voice-card p,
  .voice-person strong {
    font-size: 18px;
  }

  .newsletter-form {
    width: min(280px, 100%);
    grid-template-columns: 1fr auto;
  }

  .newsletter-form button {
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    border-left: 0;
  }

  .moments-grid,
  .teacher-grid,
  .event-row dl {
    grid-template-columns: 1fr;
  }

  .detail-hero-image,
  .service-detail-hero {
    min-height: 220px;
    aspect-ratio: 16 / 11;
  }

  .service-detail {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .service-detail-shell {
    width: min(100% - 28px, 1180px);
    gap: 18px;
  }

  .service-detail-head {
    padding: 20px 16px;
  }

  .detail-source {
    width: 100%;
  }

  .detail-source span,
  .detail-source strong {
    flex: 1;
    text-align: center;
  }

  .service-detail-head .actions .button,
  .service-detail-head .actions .status {
    width: 100%;
  }
}
