:root {
  --bg: #08101d;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f6f0e6;
  --muted: rgba(246, 240, 230, 0.7);
  --gold: #c9a164;
  --gold-strong: #e6be86;
  --header-brand-width: 465px;
  --header-height: 104px;
}

/* Dify chatbot */
#dify-chatbot-bubble-button {
  --dify-chatbot-bubble-button-width: 136px;
  --dify-chatbot-bubble-button-height: 48px;
  --dify-chatbot-bubble-button-border-radius: 999px;
  --dify-chatbot-bubble-button-bg-color: oklch(16% 0.018 76);
  --dify-chatbot-bubble-button-box-shadow: 0 16px 42px rgba(4, 5, 8, 0.32), inset 0 0 0 1px rgba(220, 180, 112, 0.38);
  bottom: 30px !important;
  right: 30px !important;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(17% 0.018 76), oklch(11% 0.012 72)) !important;
  box-shadow: 0 16px 42px rgba(4, 5, 8, 0.32), inset 0 0 0 1px rgba(220, 180, 112, 0.38) !important;
  color: oklch(84% 0.066 78);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

#dify-chatbot-bubble-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 242, 207, 0.08), rgba(255, 242, 207, 0));
  pointer-events: none;
}

#dify-chatbot-bubble-button::after {
  content: "私人顾问";
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  color: oklch(86% 0.058 78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

#dify-chatbot-bubble-button svg {
  width: 20px;
  height: 20px;
  margin-left: 18px;
}

#dify-chatbot-bubble-button svg path {
  fill: oklch(87% 0.06 78);
  stroke: oklch(87% 0.06 78);
}

#dify-chatbot-bubble-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(4, 5, 8, 0.38), inset 0 0 0 1px rgba(235, 195, 122, 0.56) !important;
}

#dify-chatbot-bubble-window {
  width: min(386px, calc(100vw - 40px)) !important;
  height: min(650px, calc(100vh - 118px)) !important;
  right: 30px !important;
  bottom: 92px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(218, 180, 113, 0.34) !important;
  box-shadow: 0 28px 76px rgba(3, 5, 9, 0.42), 0 0 0 1px rgba(255, 248, 230, 0.05) !important;
  background: oklch(96% 0.009 80) !important;
  outline: 5px solid rgba(8, 12, 18, 0.42);
}

@media (max-width: 640px) {
  #dify-chatbot-bubble-button {
    --dify-chatbot-bubble-button-width: 126px;
    --dify-chatbot-bubble-button-height: 46px;
    right: 16px !important;
    bottom: 18px !important;
  }

  #dify-chatbot-bubble-button::after {
    left: 48px;
    font-size: 13px;
  }

  #dify-chatbot-bubble-button svg {
    margin-left: 16px;
  }

  #dify-chatbot-bubble-window {
    width: calc(100vw - 28px) !important;
    height: min(604px, calc(100vh - 94px)) !important;
    left: 14px !important;
    right: auto !important;
    bottom: 78px !important;
    border-radius: 14px !important;
    outline-width: 4px;
  }
}

.store-page {
  min-height: calc(100vh - 84px);
  padding: 96px 8vw;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--bg);
}

.store-entry {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: center;
  padding: 56px 64px;
  border: 1px solid rgba(231, 221, 204, 0.12);
  background: rgba(255, 255, 255, 0.028);
}

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

.store-entry__content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 600;
}

.store-entry__content p {
  width: min(620px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.store-entry__hint {
  font-size: 0.94rem !important;
  color: rgba(246, 240, 230, 0.58) !important;
}

.store-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-entry__meta span {
  padding: 8px 12px;
  border: 1px solid rgba(231, 221, 204, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
}

.store-entry__qr {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(231, 221, 204, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.store-entry__qr-frame {
  width: 224px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #f8f6f2;
}

.store-entry__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

.store-entry__qr p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(43, 74, 122, 0.18), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #07090d 100%);
  color: var(--text);
  font-family: "Noto Sans SC", sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  grid-template-columns: var(--header-brand-width) minmax(0, 1fr) !important;
  min-height: var(--header-height) !important;
  background: rgba(6, 9, 15, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
  width: var(--header-brand-width) !important;
  min-height: var(--header-height) !important;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-cn {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.brand-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.9;
}
.main-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
}
.nav-link {
  display: grid;
  place-items: center;
  min-height: var(--header-height) !important;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  font-weight: 600;
}
.nav-link:hover,
.nav-link.is-active {
  color: #fff3df;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(201, 161, 100, 0.12), rgba(201, 161, 100, 0.04));
}
.nav-link--accent { background: rgba(201, 161, 100, 0.12); }
.hero-slider {
  position: relative;
  height: 68vh;
  min-height: 560px;
  max-height: 740px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__image,
.hero-slide__shade,
.hero-slide__content { position: absolute; inset: 0; }
.hero-slide__image {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.72), rgba(7, 9, 13, 0.18) 46%, rgba(7, 9, 13, 0.08)),
    var(--hero-image) center/cover no-repeat;
}
.hero-slide__shade {
  background:
    radial-gradient(circle at 72% 30%, rgba(230, 190, 134, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.54));
}
.hero-slide__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(860px, 100%);
  padding: 72px 8vw 92px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.56);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-slide h1,
.hero-slide h2,
.featured-copy h2,
.product-preview__heading h2,
.stats-copy h2,
.site-footer__brand h2,
.page-hero h1,
.page-section__heading h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero-slide h1,
.hero-slide h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-wrap: balance;
}
.hero-slide__title {
  max-width: 680px;
  margin: 22px 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  line-height: 1.42;
  letter-spacing: 0.04em;
  color: #fff3df;
  text-wrap: balance;
}
.hero-slide__subtitle,
.featured-lead,
.featured-panel__lead {
  margin: 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
}
.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}
.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold-strong);
}
.featured-showcase,
.product-preview,
.site-footer,
.page-shell { padding-left: 8vw; padding-right: 8vw; }
.featured-showcase { padding-top: 72px; }
.featured-shell {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1017;
}
.featured-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.92) 0%, rgba(8, 16, 29, 0.22) 32%, rgba(8, 16, 29, 0.08) 58%, rgba(8, 16, 29, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 16, 29, 0.56) 0%, transparent 18%, transparent 72%, rgba(8, 16, 29, 0.62) 100%);
}
.featured-backdrop,
.featured-overlay { position: absolute; inset: 0; }
.featured-backdrop {
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.2), rgba(255, 255, 255, 0.04)),
    url("assets/featured-bg-lake-terrace.png") center/cover no-repeat;
  filter: saturate(0.96) brightness(0.9) contrast(0.98);
}
.featured-overlay {
  background:
    linear-gradient(90deg, rgba(6, 9, 15, 0.68) 0%, rgba(6, 9, 15, 0.42) 34%, rgba(6, 9, 15, 0.12) 68%),
    radial-gradient(circle at 56% 52%, rgba(201, 161, 100, 0.1), transparent 22%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 110px);
  opacity: 0.78;
}
.featured-copy,
.featured-selector,
.featured-focus,
.featured-panel,
.featured-note { position: absolute; z-index: 2; }
.featured-copy {
  top: 72px;
  left: 72px;
  width: 430px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}
.featured-copy::before { display: none; }
.featured-copy h2 {
  color: #fffaf0;
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 1.12;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.48);
}
.section-copy,
.featured-panel__text,
.product-preview__intro,
.product-card__text,
.stats-copy p:last-child,
.site-footer__brand p:last-child,
.site-footer__info p,
.page-section__heading p,
.page-card p,
.page-copy p { color: var(--muted); line-height: 1.9; }
.featured-copy .eyebrow {
  color: #f0bf78;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.56);
}
.featured-lead {
  color: #f3c486;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}
.featured-copy .section-copy {
  width: min(420px, 100%);
  color: rgba(255, 250, 240, 0.9);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}
.featured-selector--stack {
  top: 342px;
  left: 72px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(230, 190, 134, 0.28);
  background:
    linear-gradient(180deg, rgba(12, 15, 20, 0.78), rgba(12, 15, 20, 0.48));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(9px);
}
.featured-selector__label {
  margin: 0 0 4px;
  color: #f3c486;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.featured-chip {
  min-height: 48px;
  padding: 0 18px 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 240, 0.72);
  font-family: "Noto Serif SC", serif;
  font-size: 1.06rem;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.featured-chip::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(230, 190, 134, 0.46);
  transform: translateY(-50%);
}
.featured-chip::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
}
.featured-chip:hover,
.featured-chip.is-active {
  color: #fffaf0;
  transform: translateX(5px);
  border-color: rgba(230, 190, 134, 0.72);
  background:
    linear-gradient(90deg, rgba(230, 190, 134, 0.28), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}
.featured-chip:hover::before,
.featured-chip.is-active::before {
  background: rgba(230, 190, 134, 0.92);
  box-shadow: 0 0 18px rgba(230, 190, 134, 0.38);
}
.featured-chip:hover::after,
.featured-chip.is-active::after { background: #e6be86; }
.featured-chip:last-child { border-bottom: 0; }
.featured-focus {
  top: 74px;
  left: 42%;
  width: 520px;
  height: 640px;
}
.featured-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.04), rgba(7, 9, 13, 0.1)),
    var(--feature-image) center/cover no-repeat;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24), 0 0 80px rgba(8, 16, 29, 0.44);
  background-position: center;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease, filter 0.34s ease;
}
.featured-photo--primary { width: 100%; height: 100%; min-height: 0; }
.featured-photo::before,
.featured-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.featured-photo::before {
  inset: -1px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.58), transparent 18%, transparent 82%, rgba(8, 16, 29, 0.58)),
    linear-gradient(180deg, rgba(8, 16, 29, 0.42), transparent 16%, transparent 78%, rgba(8, 16, 29, 0.68));
}
.featured-photo::after {
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(230, 190, 134, 0);
  transition: border-color 0.34s ease;
}
.featured-photo:hover,
.featured-photo:focus-visible {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(230, 190, 134, 0.46);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.46), 0 0 110px rgba(8, 16, 29, 0.54);
  filter: saturate(1.06) contrast(1.02);
}
.featured-photo:hover::after,
.featured-photo:focus-visible::after {
  border-color: rgba(230, 190, 134, 0.42);
}
.featured-photo:focus-visible {
  outline: 2px solid rgba(230, 190, 134, 0.86);
  outline-offset: 5px;
}
.featured-photo--secondary,
.featured-photo--detail { display: none; }
.featured-photo__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.02), rgba(7, 9, 13, 0.2)),
    radial-gradient(circle at top, rgba(255, 243, 223, 0.08), transparent 30%);
}
.featured-photo__meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(9, 12, 18, 0.36), rgba(9, 12, 18, 0.72));
  backdrop-filter: blur(8px);
}
.featured-photo__kicker {
  color: rgba(255, 243, 223, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.featured-photo__model {
  color: #fff3df;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.featured-photo__more {
  width: fit-content;
  margin-top: 4px;
  color: #f3c486;
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.featured-photo:hover .featured-photo__more,
.featured-photo:focus-visible .featured-photo__more {
  opacity: 1;
  transform: translateY(0);
}
.featured-panel {
  right: 78px;
  top: 218px;
  width: 330px;
  padding: 34px 30px;
  border-left: 1px solid rgba(230, 190, 134, 0.42);
  background:
    linear-gradient(135deg, rgba(14, 15, 18, 0.78), rgba(14, 15, 18, 0.46)),
    radial-gradient(circle at 85% 12%, rgba(230, 190, 134, 0.1), transparent 28%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.featured-panel:hover,
.featured-panel:focus-visible {
  transform: translateX(-8px);
  border-left-color: rgba(230, 190, 134, 0.82);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.38);
  background:
    linear-gradient(135deg, rgba(32, 27, 22, 0.88), rgba(14, 15, 18, 0.54)),
    radial-gradient(circle at 85% 12%, rgba(230, 190, 134, 0.16), transparent 30%);
}
.featured-panel:focus-visible {
  outline: 2px solid rgba(230, 190, 134, 0.82);
  outline-offset: 4px;
}
.featured-panel__kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.featured-panel h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 2.25rem;
}
.featured-panel__lead {
  margin: 12px 0 14px;
  color: #f0bf78;
  font-family: "Noto Serif SC", serif;
  font-size: 1.18rem;
  line-height: 1.6;
}
.featured-panel__text {
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.9;
}
.featured-panel__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #f3c486;
  font-weight: 700;
  font-size: 0.9rem;
}
.featured-panel__more::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: width 0.24s ease;
}
.featured-panel:hover .featured-panel__more::after,
.featured-panel:focus-visible .featured-panel__more::after {
  width: 48px;
}
.featured-note {
  display: none;
  left: 128px;
  top: 698px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}
.featured-note__line { width: 38px; height: 1px; background: rgba(230, 190, 134, 0.72); }
.product-preview { padding-top: 96px; }
.product-preview__heading {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 40px;
  align-items: end;
}
.product-preview__heading h2,
.page-hero h1,
.page-section__heading h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.product-grid { display: grid; gap: 22px; margin-top: 40px; }
.product-grid--recommend { grid-template-columns: repeat(5, minmax(170px, 1fr)); }
.product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0d12;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 190, 134, 0.42);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(230, 190, 134, 0.08) inset;
}
.product-card:focus-visible {
  outline: 2px solid rgba(230, 190, 134, 0.82);
  outline-offset: 4px;
}
.product-card__scene {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.42s ease, filter 0.42s ease;
}
.product-card:hover .product-card__scene,
.product-card:focus-visible .product-card__scene { transform: scale(1.08); filter: saturate(1.08) contrast(1.04); }
.product-card__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.04) 0%, rgba(6, 8, 12, 0.14) 42%, rgba(6, 8, 12, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 8, 12, 0.1), transparent 42%);
}
.product-card__scene--recommend-01 { background-image: url("assets/recommend-01.png"); }
.product-card__scene--recommend-02 { background-image: url("assets/recommend-02.png"); }
.product-card__scene--recommend-03 { background-image: url("assets/recommend-03.png"); }
.product-card__scene--recommend-04 { background-image: url("assets/recommend-04.png"); }
.product-card__scene--recommend-05 { background-image: url("assets/recommend-05.png"); }
.product-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 24px 26px;
}
.product-card__series {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.product-card h3,
.site-footer__info h3,
.page-card h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.55rem;
}
.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #f3c486;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.product-card__more::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width 0.24s ease;
}
.product-card:hover .product-card__more,
.product-card:focus-visible .product-card__more {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover .product-card__more::after,
.product-card:focus-visible .product-card__more::after { width: 42px; }

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.section-more a {
  min-width: 132px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(230, 190, 134, 0.48);
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.section-more a:hover,
.section-more a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(230, 190, 134, 0.86);
  background: rgba(230, 190, 134, 0.12);
  color: #fffaf0;
}

.detail-page {
  padding: 34px 10vw 96px;
  background: #202020;
}

.detail-return {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 0 16px;
  border: 1px solid rgba(230, 190, 134, 0.42);
  background: rgba(255, 255, 255, 0.025);
  color: var(--gold-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.detail-return::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.detail-return:hover,
.detail-return:focus-visible {
  transform: translateX(-4px);
  border-color: rgba(230, 190, 134, 0.82);
  background: rgba(230, 190, 134, 0.1);
}

.detail-breadcrumb {
  margin-bottom: 34px;
  color: rgba(246, 240, 230, 0.58);
  font-size: 0.92rem;
}

.detail-breadcrumb a {
  color: rgba(246, 240, 230, 0.78);
  text-decoration: none;
}

.detail-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
  min-height: 580px;
}

.detail-product::after {
  content: "SECURITY DOOR SERIES";
  position: absolute;
  top: 28px;
  left: 42%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
  pointer-events: none;
}

.detail-gallery,
.detail-info {
  position: relative;
  z-index: 1;
}

.detail-gallery__main {
  min-height: 560px;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -24px;
}

.detail-gallery__dots span {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.detail-gallery__dots span:first-child {
  background: #fff;
}

.detail-info {
  padding-top: 34px;
}

.detail-info__watermark {
  margin: 0 0 -18px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.detail-info h1 {
  margin: 0 0 42px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.detail-fields {
  display: grid;
  gap: 28px;
  margin: 0;
}

.detail-fields div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
}

.detail-fields dt {
  color: #fffaf0;
  font-weight: 700;
}

.detail-fields dd {
  margin: 0;
  color: rgba(246, 240, 230, 0.78);
  line-height: 1.9;
}

.detail-fields dd > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(246, 240, 230, 0.34);
}

.detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-thumbs button {
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: #111;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.detail-thumbs button.is-active,
.detail-thumbs button:hover {
  border-color: rgba(230, 190, 134, 0.9);
}

.detail-related {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-related h2 {
  margin: 0 0 28px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
}

.detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 320px));
  gap: 24px;
}

.detail-related__card {
  display: grid;
  gap: 14px;
  color: #111;
  background: #f4f1ec;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}

.detail-related__card span {
  min-height: 300px;
  background-position: center;
  background-size: cover;
}

.detail-related__card strong {
  color: #111;
  font-family: "Noto Serif SC", serif;
}

.detail-related__card em {
  margin: -8px 0 18px;
  color: #8c8379;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.detail-story article {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #151515;
}

.detail-story span {
  display: inline-block;
  margin-bottom: 14px;
  color: #f3c486;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.16rem;
  letter-spacing: 0.12em;
}

.detail-story h2 {
  margin: 0 0 12px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
}

.detail-story p {
  margin: 0;
  color: rgba(246, 240, 230, 0.72);
  line-height: 1.9;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 42px;
  padding-top: 48px;
  padding-bottom: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 8, 0.76);
}
.site-footer__info { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 24px; }
.page-shell { padding-top: 56px; padding-bottom: 88px; }
.page-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 72px 48px 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(7, 10, 17, 0.94) 0%, rgba(7, 10, 17, 0.8) 44%, rgba(7, 10, 17, 0.56) 100%),
    radial-gradient(circle at 78% 32%, rgba(230, 190, 134, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%);
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-hero::before {
  top: 34px;
  right: 44px;
  width: min(520px, 42vw);
  height: 230px;
  border: 1px solid rgba(230, 190, 134, 0.18);
  background:
    linear-gradient(90deg, rgba(230, 190, 134, 0.22) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 86px 100%, 100% 58px;
  opacity: 0.72;
}
.page-hero::after {
  right: 72px;
  bottom: 38px;
  width: 240px;
  height: 92px;
  border-top: 1px solid rgba(230, 190, 134, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, transparent, rgba(230, 190, 134, 0.12), transparent);
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero p { width: min(760px, 100%); color: var(--muted); line-height: 1.9; }
.page-section {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 36px;
}
.page-grid { display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 24px; }
.page-card,
.page-copy {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: stretch;
  min-height: 660px;
  margin-bottom: 34px;
}

.editorial-hero__copy {
  position: relative;
  padding: 58px 52px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 18% 12%, rgba(230, 190, 134, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(8, 11, 18, 0.98), rgba(8, 11, 18, 0.82));
}

.editorial-hero__copy h1 {
  margin: 0 0 20px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.18;
  letter-spacing: 0.06em;
}

.editorial-hero__lead {
  max-width: 560px;
  margin: 0;
  color: rgba(246, 240, 230, 0.82);
  font-size: 1.04rem;
  line-height: 2;
}

.editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.editorial-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(230, 190, 134, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: #fff3df;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-hero__visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: minmax(260px, 1fr) minmax(180px, auto);
  gap: 18px;
}

.editorial-hero__visual--news {
  grid-template-columns: 1fr 170px;
  grid-template-rows: minmax(220px, auto) minmax(320px, 1fr);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #0d1118;
}

.hero-panel--tall { grid-row: 1 / span 2; }
.hero-panel--card {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-panel--wide { padding: 0; }
.hero-panel--news-feature {
  grid-column: 1 / span 2;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(230, 190, 134, 0.12), rgba(255, 255, 255, 0.03)),
    #10131a;
}
.hero-panel--stamp {
  display: grid;
  place-items: center;
  min-height: 180px;
  background:
    radial-gradient(circle at center, rgba(230, 190, 134, 0.16), transparent 50%),
    #0c1017;
}
.hero-panel--news-image {
  min-height: 320px;
}

.hero-panel__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-panel__media--about-main {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.06), rgba(7, 9, 13, 0.42)),
    url("assets/recommend-05.png") center/cover no-repeat;
}

.hero-panel__media--about-sub {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.36)),
    url("assets/recommend-03.png") center/cover no-repeat;
  position: relative;
}

.hero-panel__media--news-main {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.12), rgba(7, 9, 13, 0.44)),
    url("assets/featured-door-bg.png") center/cover no-repeat;
}

.hero-panel__meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.3), rgba(7, 9, 13, 0.72));
  backdrop-filter: blur(8px);
}

.hero-panel__kicker,
.hero-panel__label,
.statement-card__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel__meta strong,
.hero-panel--news-feature h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

.hero-panel__number {
  color: #fff3df;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 0.08em;
}

.hero-panel--card p,
.hero-panel--news-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.ticker-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  padding: 18px 24px;
  margin-bottom: 34px;
  border-top: 1px solid rgba(230, 190, 134, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-band span {
  color: rgba(255, 243, 223, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-band--stats-rich {
  margin-top: 0;
}

.metric-card--rich p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 34px;
}

.statement-card {
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #0e1219;
}

.statement-card--quote h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.45;
}

.statement-card--copy {
  display: flex;
  align-items: center;
}

.statement-card--copy p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.page-section--media {
  grid-template-columns: minmax(240px, 280px) 1fr;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-card--image {
  grid-row: 1 / span 2;
  min-height: 460px;
}

.showcase-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.showcase-card__image--detail {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.48)),
    url("assets/recommend-01.png") center/cover no-repeat;
}

.showcase-card--text {
  padding: 26px;
}

.showcase-card__index,
.focus-tile__index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.showcase-card h3,
.focus-tile h3,
.news-strip__body h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.55rem;
}

.showcase-card p,
.focus-tile p,
.news-strip__body p,
.advantage-board__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.timeline--editorial .timeline-item__body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(230, 190, 134, 0.1), transparent 34%);
}

.advantage-board {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 26px;
  margin-top: 36px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #0e1218;
}

.advantage-board__intro h2,
.focus-board__intro h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.45;
}

.check-grid--editorial {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.headline-deck {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.headline-card--editorial {
  min-height: 250px;
}

.news-runway {
  margin-top: 34px;
}

.news-runway__list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.news-strip {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(230, 190, 134, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.03);
}

.news-strip__date {
  color: #fff3df;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.focus-board {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 26px;
  margin-top: 36px;
}

.focus-board__intro,
.event-stage {
  position: relative;
}

.focus-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 18px;
}

.focus-tile {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #10141b;
}

.event-stage {
  margin-top: 36px;
}

.event-stage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.event-card--poster {
  min-height: 280px;
  background:
    radial-gradient(circle at top, rgba(230, 190, 134, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #0f141b;
}

.page-card--accent,
.metric-card,
.headline-card,
.timeline-item__body,
.check-card,
.news-item,
.event-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(201, 161, 100, 0.12), transparent 34%);
}

.page-band {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.page-band--stats {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.metric-card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card__value {
  display: block;
  margin-bottom: 10px;
  color: #fff3df;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.08em;
}

.metric-card__label {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.page-grid--feature {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.page-card--accent::after,
.headline-card::after,
.event-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 190, 134, 0.42), transparent);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: stretch;
}

.timeline-item__year {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  border-top: 1px solid rgba(230, 190, 134, 0.3);
}

.timeline-item__body {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px;
}

.check-card {
  padding: 24px 24px 24px 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 30px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(230, 190, 134, 0.5);
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(230, 190, 134, 0.94) 42% 58%, transparent 58%),
    linear-gradient(45deg, transparent 0 56%, rgba(230, 190, 134, 0.94) 56% 70%, transparent 70%);
}

.page-band--headline {
  grid-template-columns: 1.3fr 1fr;
}

.headline-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.headline-card--primary {
  background:
    linear-gradient(135deg, rgba(230, 190, 134, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(201, 161, 100, 0.16), transparent 34%);
}

.headline-card__tag,
.event-card__meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(230, 190, 134, 0.28);
  color: var(--gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.headline-card h3,
.event-card h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.9rem;
  line-height: 1.45;
}

.headline-card p,
.event-card p,
.news-item__content p,
.check-card p,
.timeline-item__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.news-list,
.event-grid {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-item__date {
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.news-item__content h3 {
  margin: 0 0 10px;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.event-card {
  min-height: 240px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-page__hero {
  margin-bottom: 38px;
  background:
    linear-gradient(90deg, rgba(7, 10, 17, 0.96) 0%, rgba(7, 10, 17, 0.78) 46%, rgba(7, 10, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.08), rgba(6, 9, 15, 0.78)),
    url("assets/featured-door-bg.png") center 58%/cover no-repeat;
}

.product-page__hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  color: #fffaf0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.42);
}

.product-page__hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 0 0 48px;
}

.category-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 22px 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96) 42%, rgba(244, 244, 244, 0.98) 100%);
  color: #2b2b2b;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  overflow: hidden;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(201, 161, 100, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 48%);
  opacity: 0.75;
  pointer-events: none;
}

.category-tile::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 100, 0.2), transparent);
  pointer-events: none;
}

.category-tile:hover,
.category-tile.is-active {
  background:
    radial-gradient(circle at top, rgba(78, 70, 58, 0.56), rgba(51, 51, 51, 0.98) 44%, rgba(36, 36, 36, 1) 100%);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-tile:hover::before,
.category-tile.is-active::before {
  background:
    radial-gradient(circle at 20% 12%, rgba(230, 190, 134, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
}

.category-tile__icon {
  position: relative;
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
  border: 2px solid currentColor;
  z-index: 1;
}

.category-tile__icon::before,
.category-tile__icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.category-tile__icon--door::before {
  left: 24px;
  top: 12px;
  width: 32px;
  height: 54px;
  background:
    linear-gradient(180deg, transparent 0 72%, currentColor 72% 74%, transparent 74%),
    linear-gradient(90deg, transparent 0 78%, currentColor 78% 80%, transparent 80%);
}

.category-tile__icon--door::after {
  left: 48px;
  top: 38px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border: 0;
  border-radius: 50%;
}

.category-tile__icon--villa::before {
  left: 14px;
  top: 18px;
  width: 52px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 0 48%, currentColor 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 0 74%, currentColor 74% 76%, transparent 76%);
}

.category-tile__icon--villa::after {
  left: 24px;
  top: 10px;
  width: 32px;
  height: 12px;
  border-bottom: 0;
  background: linear-gradient(90deg, transparent 0 46%, currentColor 46% 54%, transparent 54%);
}

.category-tile__icon--system::before {
  left: 18px;
  top: 14px;
  width: 44px;
  height: 52px;
  background:
    linear-gradient(90deg, transparent 0 49%, currentColor 49% 51%, transparent 51%),
    linear-gradient(180deg, transparent 0 28%, currentColor 28% 30%, transparent 30% 70%, currentColor 70% 72%, transparent 72%);
}

.category-tile__icon--system::after {
  left: 50px;
  top: 38px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border: 0;
  border-radius: 50%;
  box-shadow: -16px 0 0 currentColor;
}

.category-tile__icon--patio::before {
  left: 12px;
  top: 20px;
  width: 56px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 49%, currentColor 49% 51%, transparent 51%);
}

.category-tile__icon--patio::after {
  left: 18px;
  top: 14px;
  width: 44px;
  height: 10px;
  border-bottom: 0;
  background: linear-gradient(90deg, transparent 0 32%, currentColor 32% 68%, transparent 68%);
}

.category-tile__icon--lock::before {
  left: 26px;
  top: 16px;
  width: 32px;
  height: 42px;
}

.category-tile__icon--lock::after {
  left: 30px;
  top: 8px;
  width: 24px;
  height: 18px;
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
}

.category-tile__icon--safe::before {
  left: 20px;
  top: 14px;
  width: 42px;
  height: 46px;
}

.category-tile__icon--safe::after {
  left: 38px;
  top: 31px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.category-tile__icon--home::before {
  left: 18px;
  top: 22px;
  width: 44px;
  height: 34px;
  border-top: 0;
}

.category-tile__icon--home::after {
  left: 18px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.category-tile__title {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.2rem;
}

.category-tile__en {
  position: relative;
  z-index: 1;
  color: #9a9a9a;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.category-tile.is-active .category-tile__en,
.category-tile:hover .category-tile__en {
  color: rgba(255, 255, 255, 0.72);
}

.series-switch {
  padding: 0 0 24px;
}

.series-switch__label {
  display: block;
  margin-bottom: 0;
  color: #8b8b8b;
  text-align: left;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.series-switch__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(18, 18, 18, 0.12);
  overflow: hidden;
}

.series-tab {
  min-height: 74px;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  color: #2f2f2f;
  font-family: "Noto Serif SC", serif;
  font-size: 1.8rem;
  cursor: pointer;
}

.series-tab.is-active {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #232323, #3b3b3b);
  color: #fff;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.8fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.98);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}
.gallery-card[hidden] { display: none; }

.gallery-card__image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.gallery-card__image--stone {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.14), rgba(7, 9, 13, 0.34)),
    url("https://images.pexels.com/photos/19227220/pexels-photo-19227220.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--night {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.16), rgba(7, 9, 13, 0.46)),
    url("https://images.pexels.com/photos/11139180/pexels-photo-11139180.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--sand {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.14), rgba(7, 9, 13, 0.36)),
    url("https://images.pexels.com/photos/36777846/pexels-photo-36777846.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--ivory {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.12), rgba(7, 9, 13, 0.32)),
    url("https://images.pexels.com/photos/13203192/pexels-photo-13203192.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--metal {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.18), rgba(7, 9, 13, 0.44)),
    url("https://images.pexels.com/photos/33454923/pexels-photo-33454923.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--mist {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.14), rgba(7, 9, 13, 0.34)),
    url("https://images.pexels.com/photos/7587881/pexels-photo-7587881.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--garden {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.28)),
    url("https://images.pexels.com/photos/8288959/pexels-photo-8288959.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--graphite {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.48)),
    url("https://images.pexels.com/photos/10586223/pexels-photo-10586223.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover no-repeat;
}

.gallery-card__image--entry-01 { background-image: url("assets/entry-door-01.png"); }
.gallery-card__image--entry-02 { background-image: url("assets/entry-door-02.png"); }
.gallery-card__image--entry-03 { background-image: url("assets/entry-door-03.png"); }
.gallery-card__image--entry-04 { background-image: url("assets/entry-door-04.png"); }
.gallery-card__image--entry-05 { background-image: url("assets/entry-door-05.png"); }
.gallery-card__image--armor-01 { background-image: url("assets/recommend-02.png"); }
.gallery-card__image--armor-02 { background-image: url("assets/hero-luxury-night.png"); }
.gallery-card__image--armor-03 { background-image: url("assets/armor-door-03.png"); }
.gallery-card__image--armor-04 { background-image: url("assets/armor-door-04.png"); }
.gallery-card__image--armor-05 { background-image: url("assets/armor-door-05.png"); }
.gallery-card__image--system-01 { background-image: url("assets/recommend-01.png"); }
.gallery-card__image--system-02 { background-image: url("assets/recommend-02.png"); }
.gallery-card__image--courtyard-01 { background-image: url("assets/recommend-04.png"); }
.gallery-card__image--smart-01 { background-image: url("assets/recommend-03.png"); }

.gallery-card__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: #2b2b2b;
  text-align: left;
}

.gallery-card__meta h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.gallery-card__meta p {
  margin: 0;
  color: #888;
  font-size: 0.98rem;
  line-height: 1.8;
}
.about-page {
  display: grid;
  gap: 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  min-height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(230, 190, 134, 0.08), transparent 32%), #080d14;
}

.about-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  overflow: hidden;
}

.about-hero__copy::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 72px;
  width: 90px;
  height: 1px;
  background: rgba(230, 190, 134, 0.72);
}

.about-hero__copy h1 {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 30px 0 24px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.9rem, 4.35vw, 4.95rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.03em;
}

.about-hero__copy h1 span:first-child {
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.68em;
  letter-spacing: 0.08em;
}

.about-hero__copy h1 span:nth-child(2),
.about-hero__copy h1 span:nth-child(3) {
  display: block;
}

.about-hero__lead {
  max-width: 660px;
  margin: 0;
  color: rgba(246, 240, 230, 0.82);
  font-size: 1.02rem;
  line-height: 1.95;
}

.about-hero__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.about-hero__signature span {
  padding: 9px 14px;
  border: 1px solid rgba(230, 190, 134, 0.26);
  color: rgba(255, 243, 223, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.about-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.34), transparent 40%),
    linear-gradient(180deg, rgba(8, 13, 20, 0.04), rgba(8, 13, 20, 0.44)),
    url("assets/featured-luxury-01.png") center/cover no-repeat;
}

.about-hero__stage::before {
  content: "";
  position: absolute;
  right: 44px;
  top: 72px;
  width: min(420px, 58%);
  height: 270px;
  border: 1px solid rgba(230, 190, 134, 0.2);
  background:
    linear-gradient(90deg, rgba(230, 190, 134, 0.22) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 84px 100%, 100% 54px;
}

.about-float-card {
  position: absolute;
  left: 40px;
  bottom: 42px;
  width: min(380px, calc(100% - 80px));
  padding: 22px 24px;
  border-left: 2px solid rgba(230, 190, 134, 0.82);
  background: rgba(8, 12, 18, 0.7);
  backdrop-filter: blur(8px);
}

.about-float-card span,
.about-value__grid span {
  color: #f3c486;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.about-float-card strong {
  display: block;
  margin: 10px 0 8px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.55rem;
}

.about-float-card p,
.about-metrics p,
.about-statement > p,
.about-value__grid p,
.about-timeline p,
.about-advantage p {
  margin: 0;
  color: rgba(246, 240, 230, 0.74);
  line-height: 1.85;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-metrics article {
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.about-metrics article:last-child {
  border-right: 0;
}

.about-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: #fffaf0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1;
}

.about-metrics span {
  display: block;
  margin-bottom: 12px;
  color: #f3c486;
  font-weight: 700;
}

.about-statement,
.about-advantage {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(230, 190, 134, 0.1), transparent 30%), #0d1118;
}

.about-statement h2,
.about-section-title h2,
.about-advantage h2 {
  margin: 0;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.04em;
}

.about-statement h2 {
  font-size: clamp(2.4rem, 3.7vw, 4.2rem);
}

.about-statement > p {
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 2.12;
}

.about-value,
.about-timeline {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  gap: 34px;
  align-items: start;
}

.about-section-title {
  position: sticky;
  top: 140px;
}

.about-section-title h2,
.about-advantage h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
}

.about-value__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.about-value__grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)), #0e1219;
}

.about-value__grid .about-value__image {
  grid-row: 1 / span 2;
  min-height: 540px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.02), rgba(7, 9, 13, 0.22)),
    url("assets/featured-luxury-05.png") center/cover no-repeat;
}

.about-value__grid h3,
.about-timeline h3,
.about-advantage h3 {
  margin: 18px 0 10px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.about-timeline__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-timeline__list article {
  position: relative;
  min-height: 360px;
  padding: 32px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(230, 190, 134, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #10141b;
}

.about-timeline__list article::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 190, 134, 0.72), transparent);
  opacity: 0.62;
}

.about-timeline__head {
  min-height: 118px;
}

.about-timeline time {
  display: block;
  margin-bottom: 18px;
  color: #f3c486;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.about-timeline h3 {
  margin-top: 0;
}

.about-timeline__list p {
  min-height: 112px;
  font-size: 0.98rem;
}

.about-timeline__list ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-timeline__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 243, 223, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-timeline__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(230, 190, 134, 0.78);
  transform: rotate(45deg);
}

.about-advantage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
}

.about-advantage__grid article {
  padding: 24px 24px 24px 26px;
  border-left: 1px solid rgba(230, 190, 134, 0.48);
  background: rgba(255, 255, 255, 0.03);
}

.about-advantage h3 {
  margin-top: 0;
  font-size: 1.28rem;
}

.news-page {
  display: grid;
  gap: 34px;
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(560px, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.news-hero__copy {
  position: relative;
  min-height: 650px;
  padding: 72px 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 22% 10%, rgba(230, 190, 134, 0.12), transparent 28%),
    #090e16;
}

.news-hero__copy::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 70px;
  width: 92px;
  height: 1px;
  background: rgba(230, 190, 134, 0.7);
}

.news-hero__copy h1 {
  display: grid;
  gap: 16px;
  margin: 72px 0 28px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(3.2rem, 4.7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.news-hero__copy h1 span:first-child {
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.62em;
  letter-spacing: 0.1em;
}

.news-hero__copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(246, 240, 230, 0.76);
  font-size: 1.02rem;
  line-height: 1.95;
}

.news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.news-hero__tags span {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(230, 190, 134, 0.28);
  color: rgba(255, 243, 223, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-dashboard {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  min-height: 650px;
}

.news-feature-card,
.news-stat-grid article,
.news-chart-card,
.news-image-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #10141b;
}

.news-feature-card {
  grid-column: 1 / -1;
  padding: 32px 34px;
  background:
    linear-gradient(120deg, rgba(230, 190, 134, 0.12), transparent 36%),
    #15171d;
}

.news-feature-card span,
.news-chart-card__head span {
  display: inline-block;
  margin-bottom: 16px;
  color: #f3c486;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-feature-card h2 {
  margin: 0 0 14px;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.9rem;
  line-height: 1.45;
}

.news-feature-card p {
  margin: 0;
  color: rgba(246, 240, 230, 0.72);
  line-height: 1.9;
}

.news-stat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-stat-grid article {
  padding: 22px 24px;
}

.news-stat-grid strong {
  display: block;
  color: #fffaf0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.news-stat-grid span {
  display: block;
  margin-top: 10px;
  color: #f3c486;
  font-weight: 700;
}

.news-chart-card {
  padding: 30px;
}

.news-chart-card__head strong {
  display: block;
  color: #fffaf0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.55rem;
}

.news-chart {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.news-chart__row {
  display: grid;
  grid-template-columns: 92px 1fr 44px;
  gap: 14px;
  align-items: center;
}

.news-chart__row span,
.news-chart__row b {
  color: rgba(255, 243, 223, 0.84);
  font-size: 0.92rem;
}

.news-chart__row b {
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.news-chart__row div {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.news-chart__row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #80613d, #e6be86);
}

.news-image-card {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.04), rgba(7, 9, 13, 0.32)),
    url("assets/featured-luxury-05.png") center/cover no-repeat;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr; }
  .brand-block { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .main-nav { grid-template-columns: repeat(4, minmax(140px, 1fr)); }
  .hero-slider { min-height: 500px; height: 58vh; }
  .featured-copy { top: 52px; left: 44px; width: 350px; padding: 0; }
  .featured-copy::before { display: none; }
  .featured-selector--stack {
    top: 372px;
    left: 44px;
    width: 190px;
    padding: 0;
    gap: 8px;
  }
  .featured-chip { min-height: 42px; padding-left: 34px; font-size: 0.98rem; }
  .featured-chip::before { left: 15px; width: 7px; height: 7px; }
  .featured-focus {
    top: 86px;
    left: 40%;
    width: 360px;
    height: 520px;
  }
  .featured-panel { right: 38px; top: 208px; width: 260px; }
  .featured-photo--primary { width: 100%; height: 100%; min-height: 0; }
  .product-preview__heading,
  .product-grid,
  .site-footer,
  .site-footer__info,
  .page-section,
  .page-grid { grid-template-columns: 1fr; }
  .editorial-hero,
  .statement-grid,
  .advantage-board,
  .about-hero,
  .news-hero,
  .news-dashboard,
  .about-statement,
  .about-value,
  .about-timeline,
  .about-advantage,
  .focus-board,
  .headline-deck,
  .focus-board__grid,
  .event-stage__grid { grid-template-columns: 1fr; }
  .editorial-hero__visual,
  .editorial-hero__visual--news,
  .showcase-grid,
  .check-grid--editorial { grid-template-columns: 1fr; }
  .page-band--stats,
  .about-metrics,
  .page-band--headline,
  .check-grid,
  .event-grid { grid-template-columns: 1fr; }
  .product-grid--recommend { grid-template-columns: repeat(2, minmax(200px, 1fr)); }
  .detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .detail-hero__image {
    min-height: 520px;
  }
  .detail-product {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .detail-product::after {
    display: none;
  }
  .detail-related__grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  .detail-story {
    grid-template-columns: 1fr;
  }
  .category-strip { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
  .product-gallery { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .gallery-card { grid-template-columns: 1fr; }
  .showcase-card--image { grid-row: auto; min-height: 340px; }
  .hero-panel--tall { grid-row: auto; }
  .timeline-item,
  .news-item,
  .news-strip { grid-template-columns: 1fr; }
  .about-hero,
  .about-hero__stage { min-height: 560px; }
  .news-hero__copy,
  .news-dashboard { min-height: 0; }
  .news-image-card { min-height: 320px; }
  .about-hero__copy { padding: 58px 44px; }
  .about-hero__copy::before { left: 44px; top: 58px; }
  .about-value__grid { grid-template-columns: 1fr 1fr; }
  .about-timeline__list { grid-template-columns: 1fr; }
  .about-timeline__list article { min-height: 0; }
  .about-timeline__head,
  .about-timeline__list p { min-height: 0; }
  .about-value__image { grid-row: auto; grid-column: 1 / -1; min-height: 360px; }
  .about-section-title { position: relative; top: auto; }
  .about-metrics article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .about-metrics article:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .site-header { position: relative; }
  .brand-block { padding: 16px 18px; }
  .brand-cn { font-size: 1.4rem; }
  .brand-en { font-size: 2.2rem; }
  .main-nav { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .nav-link { min-height: 66px; font-size: 1rem; }
  .hero-slider { min-height: 420px; height: 52vh; }
  .hero-slide__content,
  .featured-showcase,
  .product-preview,
  .site-footer,
  .page-shell { padding-left: 20px; padding-right: 20px; }
  .featured-shell { min-height: 920px; }
  .featured-copy { top: 28px; left: 22px; width: calc(100% - 44px); padding: 0; }
  .featured-copy::before { display: none; }
  .featured-selector--stack {
    top: 252px;
    left: 44px;
    right: 44px;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .featured-selector__label { flex: 1 0 100%; }
  .featured-chip { flex: 1 1 92px; min-height: 36px; padding-left: 28px; font-size: 0.9rem; }
  .featured-chip::before { left: 12px; width: 6px; height: 6px; }
  .featured-focus {
    top: 390px;
    left: 50%;
    width: calc(100% - 44px);
    height: 330px;
    gap: 14px;
    transform: translateX(-50%);
  }
  .featured-panel { top: 744px; left: 22px; right: 22px; width: auto; padding: 20px; }
  .featured-photo--primary { width: 100%; height: 100%; min-height: 0; }
  .featured-photo__meta { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .featured-photo__model { font-size: 1.35rem; }
  .featured-note { top: 626px; left: 44px; bottom: auto; font-size: 0.82rem; }
  .product-grid--recommend { grid-template-columns: 1fr; }
  .detail-page {
    padding: 42px 20px 72px;
  }
  .detail-hero__image {
    min-height: 360px;
  }
  .detail-hero__content {
    padding: 28px 22px 32px;
  }
  .detail-breadcrumb {
    margin-bottom: 22px;
  }
  .detail-page {
    padding: 28px 20px 72px;
  }
  .detail-gallery__main {
    min-height: 380px;
  }
  .detail-info {
    padding-top: 0;
  }
  .detail-info__watermark {
    display: none;
  }
  .detail-fields div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .detail-related__grid {
    grid-template-columns: 1fr;
  }
  .detail-related__card span {
    min-height: 260px;
  }
  .detail-story article {
    padding: 22px;
  }
  .category-strip,
  .product-gallery,
  .series-switch__tabs { grid-template-columns: 1fr; }
  .editorial-hero,
  .statement-grid,
  .advantage-board,
  .about-hero,
  .about-statement,
  .about-value,
  .about-timeline,
  .about-advantage,
  .focus-board,
  .headline-deck,
  .focus-board__grid,
  .event-stage__grid,
  .editorial-hero__visual,
  .editorial-hero__visual--news,
  .showcase-grid { grid-template-columns: 1fr; }
  .page-band--stats,
  .about-metrics,
  .page-band--headline,
  .check-grid,
  .event-grid,
  .timeline-item,
  .news-item,
  .news-strip { grid-template-columns: 1fr; }
  .gallery-card { grid-template-columns: 1fr; }
  .gallery-card__image { min-height: 320px; }
  .category-tile { min-height: 160px; }
  .series-tab { font-size: 1.35rem; }
  .page-hero { padding: 42px 22px 38px; min-height: 280px; }
  .page-hero::before { right: 18px; width: calc(100% - 36px); height: 150px; }
  .page-hero::after { right: 20px; width: 132px; }
  .headline-card,
  .event-card,
  .metric-card,
  .page-card,
  .page-copy,
  .news-item,
  .news-strip,
  .timeline-item__body,
  .check-card,
  .focus-tile,
  .statement-card,
  .hero-panel--news-feature,
  .editorial-hero__copy,
  .advantage-board,
  .about-hero__copy,
  .about-statement,
  .about-advantage,
  .showcase-card--text { padding: 22px; }
  .check-card { padding-left: 58px; }
  .editorial-hero { min-height: 0; }
  .hero-panel--news-image { min-height: 240px; }
  .ticker-band { padding: 14px 18px; gap: 10px 18px; }
  .about-page { gap: 24px; }
  .about-hero,
  .about-hero__stage { min-height: 0; }
  .about-hero__stage { min-height: 420px; }
  .about-hero__copy::before { left: 22px; top: 22px; }
  .about-hero__copy h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  .news-hero__copy h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  .news-hero__copy { min-height: 0; padding: 22px; }
  .news-hero__copy::before { left: 22px; top: 22px; }
  .news-dashboard,
  .news-stat-grid,
  .news-chart__row { grid-template-columns: 1fr; }
  .news-feature-card,
  .news-chart-card { padding: 22px; }
  .news-chart__row b { text-align: left; }
  .about-hero__signature span { width: 100%; }
  .about-float-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .about-value__grid,
  .about-advantage__grid,
  .about-timeline__list article { grid-template-columns: 1fr; }
  .about-value__image { grid-column: auto; min-height: 320px; }
  .about-metrics article { min-height: 0; padding: 24px 22px; }
  .store-page { padding: 46px 20px 70px; }
  .store-entry {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .store-entry__qr {
    width: 100%;
    padding: 22px;
  }
  .store-entry__qr-frame { width: min(190px, 100%); }
}
