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

html {
  scroll-behavior: smooth;
}

body.home-page {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #2C2A26;
  overflow-x: clip;
  background: radial-gradient(ellipse 90% 60% at 50% -8%, rgba(168, 141, 96, 0.08) 0%, transparent 55%), radial-gradient(ellipse 35% 28% at 100% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 60%), #FAF8F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: multiply;
}
body.home-page ::selection {
  background: rgba(168, 141, 96, 0.2);
  color: #121110;
}

body.home-page.has-site-nav {
  padding-top: 68px;
}

body.home-page .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(250, 248, 243, 0.72);
  border-bottom: 1px solid rgba(201, 197, 182, 0.22);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home-page .site-nav-inner {
  max-width: 1200px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

body.home-page .site-nav-logo {
  gap: 10px;
  justify-self: start;
  color: #121110;
  transition: opacity 0.3s ease;
}
body.home-page .site-nav-logo svg {
  width: 30px;
  height: 30px;
  color: #A88D60;
}
body.home-page .site-nav-logo .site-nav-brand-name {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: inherit;
}
body.home-page .site-nav-logo .site-nav-brand-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #9A958A;
}
body.home-page .site-nav-logo:hover {
  opacity: 0.75;
  background: none;
}

body.home-page .site-nav-links {
  justify-self: center;
  gap: 4px;
}

body.home-page .site-nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #6E6A60;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.home-page .site-nav-link:hover {
  color: #121110;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  box-shadow: none;
}

body.home-page .site-nav-spacer {
  display: none;
}

body.home-page.is-scrolled .site-nav {
  background: rgba(250, 248, 243, 0.92);
  box-shadow: 0 8px 32px -24px rgba(17, 16, 14, 0.1);
}

.home-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.home-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A7048;
}

.home-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A7048;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-btn:hover svg {
  transform: translateX(3px);
}
.home-btn--primary, .home-btn--light {
  border: 1px solid rgba(18, 17, 16, 0.9);
  background: linear-gradient(180deg, #242220 0%, #121110 100%);
  color: #FAF8F3;
  box-shadow: 0 20px 48px -24px rgba(17, 16, 14, 0.35);
}
.home-btn--primary:hover, .home-btn--light:hover {
  background: transparent;
  color: #121110;
  border-color: rgba(168, 141, 96, 0.55);
  transform: translateY(-1px);
}
.home-btn--ghost {
  border: 1px solid rgba(201, 197, 182, 0.45);
  background: rgba(255, 255, 255, 0.55);
  color: #2C2A26;
}
.home-btn--ghost:hover {
  color: #121110;
  border-color: rgba(168, 141, 96, 0.45);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}
.home-btn--dark {
  border: 1px solid #121110;
  background: #121110;
  color: #FAF8F3;
  box-shadow: 0 20px 48px -24px rgba(17, 16, 14, 0.35);
}
.home-btn--dark:hover {
  background: transparent;
  color: #121110;
  border-color: rgba(168, 141, 96, 0.55);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 {
  transition-delay: 0.07s;
}

.reveal--d2 {
  transition-delay: 0.14s;
}

.reveal--d3 {
  transition-delay: 0.21s;
}

.reveal--d4 {
  transition-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-stage {
  position: relative;
  min-height: auto;
  padding: clamp(48px, 8vh, 80px) 0 clamp(64px, 9vh, 96px);
  background: transparent;
  color: #2C2A26;
  overflow: hidden;
}

.home-stage__veil {
  display: none;
}

.home-stage__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-stage__title {
  margin: 20px 0 24px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: 1.02;
  color: #121110;
  overflow-wrap: anywhere;
  min-width: 0;
}
.home-stage__title em {
  font-style: normal;
  background: linear-gradient(120deg, #8A7048 0%, #A88D60 55%, #C4AC83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-stage__deck {
  max-width: 36ch;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.85;
  color: #6E6A60;
}

.home-stage__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(48px, 7vh, 72px);
}

.home-stage__frame {
  width: 100%;
  margin: 0;
}

.home-stage__visual {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 197, 182, 0.35);
  background: #F3EFE6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 32px 80px -40px rgba(17, 16, 14, 0.14);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-stage__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-stage__visual:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 40px 96px -36px rgba(168, 141, 96, 0.2);
}
.home-stage__visual:hover img {
  transform: scale(1.02);
}

.home-stage__specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 16, 14, 0.08);
  font-size: 12px;
  color: #9A958A;
}
.home-stage__specs strong {
  margin-right: 6px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #121110;
  font-variant-numeric: tabular-nums;
}

.home-catalog {
  padding: clamp(80px, 10vh, 112px) 0 clamp(96px, 12vh, 128px);
  background: transparent;
  border-top: 1px solid rgba(17, 16, 14, 0.08);
}

.home-catalog__head {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .home-catalog__head {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 48px;
  }
}

.home-catalog__headline h2 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 8px;
}
.home-catalog__headline p {
  font-size: 14px;
  color: #6E6A60;
}

.home-catalog__bento {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .home-catalog__bento {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 420px;
  }
}

.home-catalog__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(17, 16, 14, 0.07);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .home-catalog__cell--lead {
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(201, 197, 182, 0.35);
    color: #2C2A26;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 64px -48px rgba(17, 16, 14, 0.1);
  }
  .home-catalog__cell--lead:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 141, 96, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 32px 80px -40px rgba(168, 141, 96, 0.16);
  }
  .home-catalog__cell--lead:hover .home-catalog__cell-media img {
    transform: scale(1.03);
  }
  .home-catalog__cell--lead:hover .home-catalog__link {
    color: #8A7048;
  }
}
@media (max-width: 767px) {
  .home-catalog__cell--lead {
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(201, 197, 182, 0.35);
    color: #2C2A26;
  }
  .home-catalog__cell--lead .home-catalog__cell-copy {
    padding: 28px 28px 20px;
  }
  .home-catalog__cell--lead .home-catalog__cell-media {
    min-height: 200px;
    border-top: 1px solid rgba(17, 16, 14, 0.08);
  }
}
.home-catalog__cell--soon {
  cursor: default;
  border-style: dashed;
  border-color: rgba(17, 16, 14, 0.12);
  background: transparent;
}
.home-catalog__cell--soon h3, .home-catalog__cell--soon p {
  color: #6E6A60;
}
.home-catalog__cell:not(.home-catalog__cell--soon):not(.home-catalog__cell--lead):hover {
  border-color: rgba(184, 154, 106, 0.3);
  box-shadow: 0 24px 56px -40px rgba(17, 16, 14, 0.12);
  transform: translateY(-2px);
}

.home-catalog__cell-copy {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  min-width: 0;
}
.home-catalog__cell-copy h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 12px;
  color: inherit;
}
.home-catalog__cell-copy p {
  font-size: 14px;
  line-height: 1.75;
  color: #6E6A60;
  flex: 1;
}

.home-catalog__cell-media {
  position: relative;
  min-height: 180px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-catalog__cell-media {
    min-height: 0;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .home-catalog__cell--lead .home-catalog__cell-media {
    border-left: 1px solid rgba(17, 16, 14, 0.08);
    min-height: 100%;
  }
}
.home-catalog__cell--lead .home-catalog__cell-media img {
  object-fit: cover;
  object-position: center;
}
.home-catalog__cell-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-catalog__num {
  display: block;
  margin-bottom: 20px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #A88D60;
}

.home-catalog__link {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2C2A26;
  transition: color 0.3s ease;
}

.home-catalog__tag {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A958A;
}

.home-catalog__cell--soon .home-catalog__num {
  margin-bottom: 16px;
}
.home-catalog__cell--soon h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.home-catalog__cell--soon p {
  font-size: 13px;
  line-height: 1.7;
}

.home-manifesto {
  padding: clamp(80px, 10vh, 112px) 0 clamp(96px, 12vh, 128px);
  background: #F3EFE6;
  border-top: 1px solid rgba(17, 16, 14, 0.06);
  border-bottom: 1px solid rgba(17, 16, 14, 0.06);
}

.home-manifesto__quote {
  margin: 0 0 clamp(56px, 7vh, 72px);
  padding: 0;
  border: none;
  text-align: center;
}
.home-manifesto__quote p {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.55;
  color: #121110;
  max-width: 28ch;
  margin: 0 auto;
}

.home-manifesto__grid {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .home-manifesto__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(17, 16, 14, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
  }
}

.home-pillar {
  padding: 32px 28px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
}
@media (min-width: 768px) {
  .home-pillar {
    padding: 36px 32px;
    border-bottom: none;
  }
  .home-pillar:not(:last-child) {
    border-right: 1px solid rgba(17, 16, 14, 0.08);
  }
}
.home-pillar:last-child {
  border-bottom: none;
}
.home-pillar__num {
  display: block;
  margin-bottom: 20px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #8A7048;
}
.home-pillar h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.home-pillar p {
  font-size: 13px;
  line-height: 1.75;
  color: #6E6A60;
}

.home-support {
  padding: clamp(80px, 10vh, 112px) 0 clamp(96px, 12vh, 128px);
  background: transparent;
  border-top: 1px solid rgba(17, 16, 14, 0.08);
}

.home-support__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .home-support__grid {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
  }
}

@media (min-width: 900px) {
  .home-support__head {
    position: sticky;
    top: 100px;
  }
}
.home-support__head h2 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #121110;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 12px;
  line-height: 1.1;
}

.home-support__intro {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: #6E6A60;
  max-width: 22ch;
}

.home-support__action {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.home-support__meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #9A958A;
}

.home-faq {
  border-top: 1px solid rgba(17, 16, 14, 0.08);
}

.home-faq__item {
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-faq__item[open] {
  background: rgba(255, 255, 255, 0.35);
}
.home-faq__item[open] summary {
  color: #121110;
}
.home-faq__item summary {
  padding: 22px 0;
  font-size: 15px;
  font-weight: 400;
  color: #2C2A26;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
  transition: color 0.25s ease;
}
.home-faq__item summary::-webkit-details-marker {
  display: none;
}
.home-faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.55;
  background: linear-gradient(#8A7048, #8A7048) center/12px 1px no-repeat, linear-gradient(#8A7048, #8A7048) center/1px 12px no-repeat;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.home-faq__item summary:hover {
  color: #121110;
}
.home-faq__item summary:hover::after {
  opacity: 0.9;
}
.home-faq__item[open] summary::after {
  transform: rotate(45deg);
  opacity: 0.9;
}

.home-faq__answer {
  padding: 0 0 22px;
}
.home-faq__answer p {
  font-size: 14px;
  line-height: 1.85;
  color: #6E6A60;
  max-width: 52ch;
}
.home-faq__answer p a {
  color: #8A7048;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 141, 96, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.home-faq__answer p a:hover {
  color: #121110;
  border-bottom-color: #A88D60;
}

.home-footer {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(17, 16, 14, 0.08);
  background: #FAF8F3;
}

.home-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .home-footer__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.home-footer__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: #121110;
}
.home-footer__brand span {
  font-family: "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.home-footer__brand small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A958A;
}

.home-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.home-footer__links a {
  font-size: 13px;
  color: #6E6A60;
  text-decoration: none;
  transition: color 0.25s ease;
}
.home-footer__links a:hover {
  color: #121110;
}

.home-footer__copy {
  font-size: 12px;
  color: #9A958A;
  white-space: nowrap;
}

@media (max-width: 640px) {
  body.home-page .site-nav-inner {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }
  body.home-page .site-nav-logo .site-nav-brand-sub {
    display: none;
  }
  body.home-page .site-nav-link {
    padding: 6px 12px;
    font-size: 12px;
  }
  .home-stage__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-stage__specs {
    gap: 12px 20px;
  }
  .home-stage__specs span {
    flex: 1 1 40%;
    text-align: center;
  }
  .home-support__action {
    width: 100%;
    max-width: 280px;
  }
  .home-faq__item summary {
    padding: 18px 0;
    font-size: 14px;
  }
  .home-faq__answer {
    padding-bottom: 18px;
  }
}
@media (max-width: 479px) {
  .home-wrap {
    padding: 0 16px;
  }
  .home-stage__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }
  .home-catalog__cell--lead .home-catalog__cell-copy {
    padding: 24px 20px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-stage__visual:hover,
  .home-stage__visual:hover img,
  .home-catalog__cell--lead:hover .home-catalog__cell-media img {
    transform: none;
  }
}
