:root {
  --brand: #601986;
  --brand-dark: #3a0f50;
  --brand-mid: #7b2da0;
  --brand-soft: #f3e8f7;
  --gold: #c89b3c;
  --gold-dark: #9c7428;
  --gold-soft: #fbf4e3;
  --bg: #f8f3ea;
  --bg-soft: #fbf8f2;
  --card: #ffffff;
  --text: #241b20;
  --muted: #6f6258;
  --light: #9b8d82;
  --border: #e5d8c8;
  --green: #3f6b4a;
  --green-soft: #eef4ef;
  --blue: #1686c8;
  --blue-soft: #eaf6fc;
  --danger: #a33a32;
  --shadow: 0 12px 36px rgba(58, 42, 33, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 243, 234, 0.93);
  border-bottom: 1px solid rgba(229, 216, 200, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand-logo {
  width: 128px;
  height: 34px;
  object-fit: contain;
}

.brand-subtitle {
  padding-left: 8px;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(96, 25, 134, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--muted);
  font-size: 14px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item:focus-within > a {
  background: rgba(96, 25, 134, 0.08);
  color: var(--brand-dark);
}

.has-submenu > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 172px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(229, 216, 200, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(58, 42, 33, 0.12);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-item:nth-last-child(-n + 2) .nav-submenu {
  left: auto;
  right: 0;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--text);
  white-space: nowrap;
  font-weight: 500;
}

.nav-submenu a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--brand-dark);
}

.nav-submenu-toggle {
  display: none;
}

.btn,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.chip:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--gold-soft);
  color: var(--brand-dark);
  border-color: rgba(200, 155, 60, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

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

.btn:disabled,
.contact-method:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.chip {
  min-height: 36px;
  padding: 6px 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
}

.chip.gold {
  background: var(--gold-soft);
  color: #6d4c17;
}

.chip.green {
  background: var(--green-soft);
  color: var(--green);
}

.chip.blue {
  background: var(--blue-soft);
  color: #0f6498;
}

.section {
  padding: 48px 28px;
}

.section.compact {
  padding: 32px 28px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0;
}

.section-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--brand-dark);
}

.section-lead {
  margin: 14px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
}

.section-copy-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.section-copy-text {
  max-width: 940px;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(200, 155, 60, 0.22);
}

.section-copy-text p {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.9;
}

.hero {
  min-height: 600px;
  padding: 30px 28px 30px;
  display: flex;
  align-items: center;
}

.home-hero {
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  padding-top: 28px;
  padding-bottom: 28px;
  align-items: center;
}

.page-hero {
  min-height: 480px;
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.page-hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.page-hero-content h1 {
  max-width: 900px;
}

.page-hero-content p {
  max-width: 760px;
}

.product-hero {
  min-height: 590px;
}

.product-hero .hero-media {
  background: #fff;
  display: grid;
  place-items: center;
}

.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--brand-dark);
}

.page-hero h1 {
  font-size: clamp(36px, 4.4vw, 54px);
}

.hero p {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.button-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, var(--gold-soft) 54%, var(--brand-soft) 100%);
  box-shadow: 0 18px 42px rgba(58, 42, 33, 0.09);
  border: 1px solid rgba(229, 216, 200, 0.78);
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-media > img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  padding: 28px;
  background: #fff;
}

.product-hero .hero-media > img {
  width: 100%;
  height: 380px;
  padding: 28px;
}

.page-hero .hero-media {
  min-height: 330px;
}

.page-hero .hero-product-showcase {
  padding: 16px;
}

.product-visual {
  position: absolute;
  inset: 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.hero-product-showcase {
  height: 100%;
  min-height: inherit;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hero-product-card {
  min-width: 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 216, 200, 0.88);
  display: grid;
  align-content: start;
  gap: 8px;
  box-shadow: 0 10px 28px rgba(58, 42, 33, 0.05);
}

.hero-product-card.is-featured {
  background: #fff;
}

.hero-product-art {
  min-height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border-radius: 8px;
  overflow: hidden;
}

.hero-product-card img {
  width: 100%;
  height: 120px;
  min-height: 0;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.hero-product-card strong {
  color: var(--brand-dark);
  font-size: 17px;
  line-height: 1.35;
}

.hero-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-product-card small {
  color: var(--light);
}

.hero-media .bottle {
  width: 68px;
  height: 136px;
}

.hero-media .bottle.small {
  height: 116px;
}

.hero-media .bottle::before {
  top: -11px;
  left: 18px;
  width: 32px;
  height: 24px;
}

.product-visual img {
  width: min(82%, 300px);
  height: auto;
  min-height: 0;
  max-height: 142px;
  object-fit: contain;
  background: #fff;
}

.hero-media .product-visual > img {
  display: none;
}

.bottle-group {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
}

.bottle {
  width: 106px;
  height: 230px;
  border-radius: 46px 46px 26px 26px;
  background: linear-gradient(160deg, #7f2aa2 0%, #4f126c 55%, #f3d77f 56%, #c89b3c 100%);
  box-shadow: 0 20px 40px rgba(58, 15, 80, 0.22);
  position: relative;
}

.bottle.small {
  height: 200px;
}

.bottle::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 28px;
  width: 50px;
  height: 38px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #f6e7b5, #b88c35);
}

.visual-label {
  max-width: 290px;
  color: var(--brand-dark);
  font-weight: 700;
}

.visual-note {
  color: var(--muted);
  font-size: 13px;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.empty-state {
  display: none;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px dashed rgba(200, 155, 60, 0.55);
  border-radius: 8px;
  background: var(--gold-soft);
  color: #6d4c17;
}

.empty-state.is-visible {
  display: block;
}

.card {
  background: var(--card);
  border: 1px solid rgba(229, 216, 200, 0.9);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(58, 42, 33, 0.045);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--brand-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .button-row {
  margin-top: 16px;
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 14px;
  background: var(--bg-soft);
}

.article-card-title,
.article-summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.article-card-title {
  -webkit-line-clamp: 2;
}

.article-summary {
  -webkit-line-clamp: 3;
}

.section-article-grid [data-article-card] {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.section-article-grid .article-card-title {
  min-height: 60px;
}

.section-article-grid .article-summary {
  min-height: 76px;
  max-height: 76px;
}

.section-article-grid .article-meta {
  min-height: 24px;
}

.section-article-grid [data-article-card] .button-row {
  margin-top: auto;
}

.article-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.article-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid rgba(229, 216, 200, 0.95);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 6px 18px rgba(58, 42, 33, 0.04);
}

.article-list-item .chip {
  width: fit-content;
  margin-bottom: 8px;
}

.article-list-title {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.35;
}

.article-list-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-list-item .article-meta {
  min-height: 0;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-list-item .button-row {
  margin-top: 0;
  white-space: nowrap;
}

.product-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
}

.product-center-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-featured-products {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
}

.home-featured-products .product-card {
  height: 100%;
}

.product-more-row,
.article-more-row {
  justify-content: center;
  margin-top: 22px;
}

.product-thumb {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.28);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #fff;
}

.placeholder-art {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--brand-dark);
}

.product-thumb .bottle {
  width: 52px;
  height: 110px;
}

.product-thumb .bottle.small {
  height: 92px;
}

.product-thumb .bottle::before {
  top: -9px;
  left: 14px;
  width: 24px;
  height: 18px;
  border-radius: 8px 8px 4px 4px;
}

.meta-list,
.clean-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.meta-list li,
.clean-list li {
  display: flex;
  gap: 8px;
}

.meta-list li::before,
.clean-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 32px;
  align-items: start;
}

.home-knowledge-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-knowledge-split > div {
  min-width: 0;
}

.home-column-head {
  min-height: 132px;
}

.home-column-head .section-title {
  max-width: 100%;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.home-column-head .section-lead {
  margin-top: 10px;
  min-height: 48px;
  font-size: 16px;
}

.home-article-list {
  margin-top: 14px;
}

.home-knowledge-split [data-article-card] {
  display: grid;
  align-content: start;
}

.home-knowledge-split .article-card-title {
  min-height: 60px;
  -webkit-line-clamp: 2;
}

.home-knowledge-split .article-summary {
  min-height: 76px;
  max-height: 76px;
  line-height: 1.58;
  -webkit-line-clamp: 3;
}

.home-knowledge-split .article-meta {
  min-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.band {
  background: var(--brand-dark);
  color: #fff;
}

.section.band {
  padding-top: 38px;
  padding-bottom: 38px;
}

.final-cta {
  padding-top: 28px;
  padding-bottom: 22px;
}

.band .section-title,
.band .eyebrow {
  color: #fff;
}

.band .section-lead,
.band p {
  color: rgba(255, 255, 255, 0.78);
}

.band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.band .card h3 {
  color: #fff;
}

.band .button-row {
  margin-top: 16px;
}

.notice {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--gold-soft);
  border: 1px solid rgba(200, 155, 60, 0.32);
  color: #6d4c17;
  font-size: 14px;
}

.band .notice,
.site-footer .notice {
  color: #5f4212;
  background: #fff4d8;
  border-color: rgba(200, 155, 60, 0.42);
}

@media (min-width: 981px) and (max-height: 820px) {
  .nav {
    min-height: 64px;
  }

  .brand-logo {
    width: 118px;
    height: 32px;
  }

  .home-hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 4.75vw, 54px);
    line-height: 1.04;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-product-showcase {
    padding: 16px;
    gap: 12px;
  }

  .hero-product-card {
    padding: 12px;
  }

  .hero-product-art,
  .hero-product-card img {
    height: 106px;
    min-height: 106px;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section.compact {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav {
    min-height: 64px;
    padding: 0 18px;
    gap: 8px;
  }

  .brand {
    min-width: 126px;
  }

  .brand-logo {
    width: 116px;
    height: 32px;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-links {
    font-size: 13px;
  }

  .nav-item > a {
    padding: 0 7px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(36px, 4.8vw, 52px);
  }

  .section-title {
    font-size: clamp(26px, 3.7vw, 42px);
  }
}

@media (min-width: 981px) and (max-height: 700px) {
  .nav {
    min-height: 58px;
  }

  .home-hero {
    min-height: calc(100vh - 58px);
    min-height: calc(100svh - 58px);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(34px, 4.45vw, 50px);
  }

  .hero p {
    margin-top: 10px;
    line-height: 1.55;
  }

  .hero-actions,
  .button-row {
    margin-top: 14px;
  }

  .hero-media {
    min-height: 318px;
  }

  .hero-product-card small {
    display: none;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
}

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.table th {
  width: 170px;
  color: var(--brand-dark);
  background: var(--bg-soft);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.contact-method {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--text);
  text-align: left;
  font: inherit;
}

.contact-method:hover {
  border-color: rgba(31, 91, 67, 0.38);
  background: #fff;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  color: var(--brand-dark);
  font-size: 17px;
}

.contact-method small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.consult-action-result {
  min-height: 22px;
  color: var(--brand);
  font-size: 14px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tab {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
}

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

.accordion {
  display: grid;
  gap: 12px;
}

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--brand-dark);
  font-weight: 600;
}

.field small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.inquiry-verification-row {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) minmax(120px, 1fr);
  gap: 10px;
  align-items: center;
}

.inquiry-verification-row strong {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--brand-dark);
}

.inquiry-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 560px) {
  .inquiry-verification-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.78);
  padding: 32px 28px 56px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(150px, .72fr));
  gap: 22px;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin: 0 0 10px;
}

.site-footer h3 {
  font-size: 22px;
}

.site-footer p {
  margin: 0 0 10px;
  line-height: 1.72;
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .notice {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-record {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.site-footer .footer-record a {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-record a:hover {
  color: #fff;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 243, 234, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.mobile-sticky .btn {
  flex: 1;
  padding: 8px 10px;
  min-height: 46px;
  font-size: 14px;
}

.article-body {
  max-width: 820px;
}

.article-body.section-copy-text {
  max-width: 940px;
}

.article-body h2 {
  margin-top: 34px;
  color: var(--brand-dark);
}

.article-body p {
  color: var(--muted);
}

.article-meta {
  color: var(--muted);
  margin-top: 14px;
}

body[data-page="admin"] {
  background: var(--bg-soft);
}

.admin-screen {
  min-height: 100vh;
  padding: 32px 24px 56px;
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-login-wrap {
  display: grid;
  place-items: center;
}

.admin-login {
  width: min(480px, 100%);
}

.admin-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(58, 42, 33, 0.045);
}

.admin-dashboard {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.admin-note {
  margin: 0;
}

.admin-category {
  display: grid;
  gap: 16px;
}

.admin-category-head {
  display: grid;
  gap: 6px;
  padding: 0 2px;
}

.admin-category-head h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 26px;
}

.admin-category-head p {
  margin: 0;
  color: var(--muted);
}

.admin-category-grid {
  display: grid;
  gap: 16px;
}

.admin-panel {
  display: grid;
  gap: 18px;
  box-shadow: none;
}

.admin-panel h2 {
  margin: 0;
  color: var(--brand-dark);
}

.admin-panel h3 {
  margin-top: 0;
}

.admin-form-grid {
  align-items: start;
}

.admin-category-list {
  display: grid;
  gap: 10px;
}

.admin-category-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 110px auto auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.admin-category-row .field {
  margin: 0;
}

.category-visible-field {
  align-self: center;
  margin-bottom: 1px;
}

.category-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-upload-field {
  gap: 8px;
}

.admin-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.admin-upload-button {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.admin-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.admin-image-preview img {
  width: 84px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--bg-soft);
}

.admin-image-preview span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
}

.admin-article-workspace,
.admin-article-form,
.admin-faq-workspace {
  display: grid;
  gap: 16px;
}

.admin-faq-list {
  display: grid;
  gap: 8px;
}

.admin-faq-row {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.3fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.admin-faq-row strong,
.admin-faq-row small {
  display: block;
}

.admin-faq-row small {
  margin-top: 4px;
  color: var(--muted);
}

.admin-faq-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-article-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) auto;
  gap: 12px;
  align-items: end;
}

.admin-article-table {
  display: grid;
  gap: 8px;
}

#articleAdminList {
  display: grid;
  gap: 8px;
}

.admin-list-toggle {
  justify-self: start;
  margin-top: 2px;
}

.admin-article-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(96px, .58fr) minmax(130px, .78fr) minmax(96px, .62fr) 72px 92px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.admin-article-head {
  background: var(--bg-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.admin-article-row.is-active {
  border-color: rgba(105, 0, 119, 0.45);
  box-shadow: 0 0 0 2px rgba(105, 0, 119, 0.08);
}

.admin-article-row strong,
.admin-article-row small {
  display: block;
}

.admin-article-row small {
  margin-top: 4px;
  color: var(--muted);
  word-break: break-all;
}

.admin-badge {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 54px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-badge.is-live {
  background: rgba(224, 239, 230, 0.95);
  color: #2f6b49;
}

.admin-stack {
  display: grid;
  gap: 18px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 130px 120px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.admin-mini-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: 8px;
}

.admin-mini-stat {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-soft);
}

.admin-mini-stat strong,
.admin-mini-stat span {
  display: block;
}

.admin-mini-stat strong {
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1;
}

.admin-mini-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.admin-mini-row {
  grid-template-columns: minmax(120px, .45fr) minmax(240px, 1fr) 140px;
}

.permission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand-dark);
  font-size: 14px;
}

.checkbox-line input {
  width: 16px;
  height: 16px;
}

.admin-user-list {
  display: grid;
  gap: 12px;
}

.admin-user-row {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(260px, 1.1fr) minmax(180px, .7fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.admin-user-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

body[data-page="admin"] .container {
  max-width: 1180px;
}

body[data-page="admin"] .admin-screen {
  padding: 14px 14px 30px;
}

body[data-page="admin"] .admin-topbar {
  padding: 12px 14px;
  gap: 10px;
  margin-bottom: 10px;
}

body[data-page="admin"] .admin-topbar .section-title {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.16;
}

body[data-page="admin"] .section-lead,
body[data-page="admin"] .admin-category-head p {
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="admin"] .admin-dashboard {
  gap: 14px;
  margin-top: 12px;
}

body[data-page="admin"] .admin-category {
  gap: 8px;
}

body[data-page="admin"] .admin-category-head {
  gap: 3px;
}

body[data-page="admin"] .admin-category-head h2 {
  font-size: 19px;
}

body[data-page="admin"] .admin-category-grid {
  gap: 8px;
}

body[data-page="admin"] .card,
body[data-page="admin"] .admin-panel {
  padding: 10px 12px;
}

body[data-page="admin"] .admin-panel {
  gap: 9px;
}

body[data-page="admin"] .admin-panel h2 {
  font-size: 18px;
}

body[data-page="admin"] .admin-panel h3 {
  margin-bottom: 2px;
  font-size: 17px;
}

body[data-page="admin"] .form,
body[data-page="admin"] .admin-article-workspace,
body[data-page="admin"] .admin-article-form,
body[data-page="admin"] .admin-faq-workspace,
body[data-page="admin"] .admin-faq-list,
body[data-page="admin"] .admin-table,
body[data-page="admin"] .admin-category-list,
body[data-page="admin"] .admin-user-list {
  gap: 6px;
}

body[data-page="admin"] .admin-article-tools {
  gap: 6px;
}

body[data-page="admin"] .field {
  gap: 4px;
}

body[data-page="admin"] .field label {
  font-size: 13px;
}

body[data-page="admin"] .field small {
  font-size: 12px;
  line-height: 1.45;
}

body[data-page="admin"] .field input,
body[data-page="admin"] .field select,
body[data-page="admin"] .field textarea {
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 7px;
  font-size: 13px;
}

body[data-page="admin"] .field textarea {
  min-height: 74px;
}

body[data-page="admin"] .btn {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 13px;
}

body[data-page="admin"] .notice {
  padding: 8px 10px;
  font-size: 12.5px;
  line-height: 1.45;
}

body[data-page="admin"] .admin-category-row {
  grid-template-columns: minmax(190px, 1fr) 88px auto auto;
  gap: 6px;
  padding: 6px;
}

body[data-page="admin"] .admin-article-row {
  grid-template-columns: minmax(220px, 1.5fr) minmax(86px, .55fr) minmax(118px, .72fr) minmax(86px, .58fr) 70px 82px;
  gap: 6px;
  padding: 6px 8px;
  font-size: 12.5px;
}

body[data-page="admin"] .admin-article-row small,
body[data-page="admin"] .admin-user-row small {
  margin-top: 2px;
  font-size: 12px;
}

body[data-page="admin"] .admin-badge {
  min-width: 48px;
  padding: 3px 7px;
  font-size: 12px;
}

body[data-page="admin"] .admin-row {
  grid-template-columns: 1fr 120px 108px;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 12.5px;
}

body[data-page="admin"] .admin-mini-stats {
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  gap: 6px;
}

body[data-page="admin"] .admin-mini-stat {
  padding: 7px 8px;
  border-radius: 7px;
}

body[data-page="admin"] .admin-mini-stat strong {
  font-size: 18px;
}

body[data-page="admin"] .admin-mini-stat span {
  margin-top: 4px;
  font-size: 12px;
}

body[data-page="admin"] .admin-mini-row {
  grid-template-columns: minmax(110px, .5fr) minmax(220px, 1fr) 108px;
}

body[data-page="admin"] .admin-user-row {
  grid-template-columns: minmax(160px, .65fr) minmax(240px, 1fr) minmax(160px, .62fr) auto;
  gap: 8px;
  padding: 8px;
}

body[data-page="admin"] .admin-faq-row {
  gap: 8px;
  padding: 7px 8px;
  font-size: 12.5px;
}

body[data-page="admin"] .permission-grid,
body[data-page="admin"] .category-choice-grid {
  gap: 6px;
}

body[data-page="admin"] .checkbox-line {
  gap: 5px;
  padding: 6px 9px;
  font-size: 13px;
}

body[data-page="admin"] .checkbox-line input {
  width: 14px;
  height: 14px;
}

body[data-page="admin"] .button-row {
  gap: 8px;
  margin-top: 4px;
}

body[data-page="admin"] .admin-list-toggle {
  margin-top: 0;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 60;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

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

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav.is-open .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    height: calc(100vh - 136px);
    height: calc(100dvh - 136px - env(safe-area-inset-bottom));
    display: grid;
    align-content: start;
    gap: 2px;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open .nav-links a {
    padding: 12px 10px;
  }

  .nav.is-open .nav-item {
    position: relative;
    width: 100%;
  }

  .nav.is-open .nav-item > a {
    width: 100%;
    justify-content: space-between;
    padding-right: 52px;
  }

  .nav.is-open .nav-submenu {
    position: static;
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: none;
    box-shadow: none;
    background: var(--bg-soft);
    margin: 0 0 8px;
  }

  .nav.is-open .nav-item.is-expanded .nav-submenu {
    display: grid;
    visibility: visible;
    opacity: 1;
  }

  .nav.is-open .has-submenu > a::after {
    display: none;
  }

  .nav.is-open .nav-submenu-toggle {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--brand-dark);
    font-size: 24px;
    line-height: 1;
    transition: transform .16s ease, background .16s ease;
  }

  .nav.is-open .nav-submenu-toggle:active,
  .nav.is-open .nav-submenu-toggle:focus-visible {
    background: var(--brand-soft);
  }

  .nav.is-open .nav-item.is-expanded .nav-submenu-toggle {
    transform: rotate(180deg);
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .product-center-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head-row {
    display: grid;
  }

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

  .hero-media img {
    min-height: 360px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .article-list-item {
    grid-template-columns: 1fr;
  }

  .article-list-item .button-row {
    justify-content: flex-start;
  }

  .admin-article-tools,
  .admin-faq-row,
  .admin-article-row {
    grid-template-columns: 1fr;
  }

  .admin-article-head {
    display: none;
  }

  .product-thumb {
    max-width: 260px;
  }

  .section {
    padding: 54px 16px;
  }

  .section.compact {
    padding: 40px 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-product-showcase {
    height: auto;
    min-height: 0;
    padding: 8px;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero .hero-product-showcase,
  .home-hero .hero-product-showcase {
    padding: 8px;
  }

  .hero-product-card {
    width: 100%;
  }

  .hero-product-art {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .hero-product-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 18px;
  }

  .product-center-grid,
  .home-featured-products {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .product-center-grid .product-card,
  .home-featured-products .product-card {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .product-center-grid .product-thumb,
  .home-featured-products .product-thumb {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p,
  .section-lead {
    font-size: 16px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .table,
  .table tbody,
  .table tr,
  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table th {
    border-bottom: 0;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .admin-user-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-screen {
    padding: 20px 14px 48px;
  }

  .site-footer {
    padding: 30px 18px 76px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer h3,
  .site-footer h4 {
    margin-bottom: 7px;
  }

  .site-footer a {
    margin: 5px 0;
  }

  .site-footer p {
    margin-bottom: 8px;
  }
}
