:root {
  color-scheme: light;
  --ink: #101411;
  --muted: #66706a;
  --paper: #f8f7f2;
  --panel: #ffffff;
  --panel-2: #eeebe2;
  --deep: #0f241d;
  --pine: #173f32;
  --sage: #e6ede5;
  --wine: #7a2636;
  --rose: #c7837f;
  --gold: #a87542;
  --line: rgba(16, 20, 17, 0.12);
  --line-dark: rgba(16, 20, 17, 0.14);
  --shadow: 0 22px 60px rgba(16, 20, 17, 0.1);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 560px),
    var(--paper);
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px 38px;
  color: var(--deep);
  border-bottom: 1px solid rgba(16, 20, 17, 0.1);
  background: rgba(255, 255, 252, 0.91);
  box-shadow: 0 10px 32px rgba(16, 20, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(16, 20, 17, 0.14);
  border-radius: 4px;
  color: #fffaf1;
  background: var(--deep);
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(15, 36, 29, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  word-break: keep-all;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--deep);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(16, 20, 17, 0.14);
  border-radius: 4px;
  background: rgba(16, 20, 17, 0.04);
}

.lang-button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 3px;
  color: rgba(15, 36, 29, 0.66);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.lang-button.active {
  color: #fffaf1;
  background: var(--deep);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(16, 20, 17, 0.14);
  border-radius: 4px;
  color: var(--deep);
  background: rgba(16, 20, 17, 0.04);
}

.cart-pill svg,
.button svg,
.icon-button svg,
.service-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.cart-pill strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 3px;
  color: #fffaf1;
  background: var(--deep);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 124px 38px 34px;
  color: #fffaf1;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center;
  transform: scale(1.015);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 28, 21, 0.78), rgba(9, 28, 21, 0.42) 46%, rgba(9, 28, 21, 0.08)),
    linear-gradient(0deg, rgba(9, 28, 21, 0.7), rgba(9, 28, 21, 0.05) 58%);
}

.petal-field {
  display: none;
}

.hero-content {
  width: min(920px, 100%);
  padding-bottom: 104px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: 4.9rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.84);
  background: rgba(17, 28, 23, 0.34);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fffaf1;
  background: var(--deep);
  box-shadow: 0 16px 34px rgba(15, 36, 29, 0.2);
}

.button.secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.42);
  background: rgba(255, 250, 241, 0.06);
}

.hero-strip {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  color: #fffaf1;
  background: rgba(17, 28, 23, 0.74);
  backdrop-filter: blur(16px);
}

.hero-strip div {
  min-width: 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line-dark);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-strip span {
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.88rem;
}

.section {
  padding: 86px 38px;
  scroll-margin-top: 106px;
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading h2,
.basket-header h2,
.studio-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.studio-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.catalog-section {
  background:
    linear-gradient(180deg, #f6f1e8, #eee6d8);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 344px;
  gap: 24px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: start;
}

.filter-bar {
  position: sticky;
  top: 84px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--deep);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 850;
}

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

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

.product-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(16, 20, 17, 0.07);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(168, 117, 66, 0.42);
  box-shadow: 0 24px 56px rgba(16, 20, 17, 0.12);
  transform: translateY(-2px);
}

.product-media {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: var(--panel-2);
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-link {
  color: inherit;
}

.product-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  min-width: 0;
  padding: 18px;
}

.product-kicker,
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.product-code {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-top h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.28;
}

.product-top h3 span,
.product-top h3 small {
  display: block;
}

.product-top h3 small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-title-link:hover span {
  color: var(--wine);
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(38, 59, 50, 0.18);
  border-radius: 3px;
  color: var(--pine);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-card[data-tone="红粉色"] .product-badge,
.product-card[data-tone="柔粉色"] .product-badge {
  color: #7e2737;
  background: #f3d8d8;
}

.product-card[data-tone="紫调色"] .product-badge {
  color: #483861;
  background: #e5ddec;
}

.product-card[data-tone="暖橙色"] .product-badge {
  color: #744d16;
  background: #f0dfbd;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.66;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(18, 22, 21, 0.08);
  border-radius: 3px;
  color: var(--deep);
  background: #f5f3ec;
  font-size: 0.78rem;
  font-weight: 760;
}

.add-button {
  width: 100%;
  color: #fffaf1;
  background: var(--deep);
}

.product-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
}

.product-actions .button {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.detail-link {
  color: var(--deep);
  border-color: var(--line);
  background: #f2eadf;
}

.detail-link:hover {
  border-color: rgba(123, 38, 53, 0.32);
  background: #eadfce;
}

.basket-panel {
  position: sticky;
  top: 84px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
}

.basket-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.basket-header .eyebrow {
  margin-bottom: 8px;
}

.basket-header h2 {
  font-size: 1.42rem;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--deep);
  background: #f1eadf;
}

.basket-list {
  display: grid;
  gap: 12px;
  min-height: 112px;
  padding: 16px 0;
}

.empty-state {
  display: grid;
  min-height: 92px;
  place-items: center;
  margin: 0;
  border: 1px dashed rgba(18, 22, 21, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.basket-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.basket-item:last-child {
  border-bottom: 0;
}

.basket-item strong,
.basket-item span {
  display: block;
}

.basket-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 32px 30px 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.qty-controls button {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--deep);
  background: white;
  font-weight: 900;
}

.qty-controls em {
  font-style: normal;
  text-align: center;
  font-weight: 850;
}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.basket-total strong {
  color: var(--wine);
  font-size: 1.42rem;
}

.basket-button {
  width: 100%;
  margin-top: 18px;
  color: #fffaf1;
  background: var(--wine);
}

.service-section {
  background: #fffdf8;
}

.service-rows {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(184, 148, 93, 0.34);
  border-radius: 4px;
  color: var(--deep);
  background: #f2e7d5;
}

.service-row h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1080px, 100%);
  margin: 26px auto 0;
}

.logistics-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 32, 28, 0.07);
}

.logistics-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.logistics-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.18rem;
}

.logistics-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.qa-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1080px, 100%);
  margin: 16px auto 0;
}

.qa-service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.95), rgba(239, 231, 216, 0.92));
  box-shadow: 0 16px 38px rgba(23, 32, 28, 0.06);
}

.qa-service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.qa-service-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.24rem;
}

.qa-service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.news-section {
  background: #f5efe6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.news-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(18, 22, 21, 0.08);
}

.news-card span,
.case-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.news-card h3,
.case-card h3 {
  margin: 14px 0 0;
  font-size: 1.22rem;
  line-height: 1.34;
}

.news-card p,
.case-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.cases-section {
  background: #fffdf8;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.case-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(18, 22, 21, 0.08);
  overflow: hidden;
}

.case-card img {
  height: 230px;
  object-fit: cover;
}

.case-card div {
  padding: 22px;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: center;
  padding: 92px 38px;
  background: var(--deep);
  color: #fffaf1;
  scroll-margin-top: 106px;
}

.studio-image-wrap {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}

.studio-image-wrap img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.studio-copy {
  max-width: 560px;
}

.studio-copy p,
.studio-list dd {
  color: rgba(255, 250, 241, 0.7);
}

.studio-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.studio-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.studio-list dt {
  color: var(--gold);
  font-weight: 900;
}

.studio-list dd {
  margin: 0;
  line-height: 1.7;
}

.showcase-section {
  background: #f5efe6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.showcase-feature,
.showcase-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fffaf1;
  background: var(--deep);
  box-shadow: 0 20px 46px rgba(18, 22, 21, 0.12);
}

.showcase-feature {
  grid-column: span 2;
  min-height: 430px;
}

.showcase-feature img,
.showcase-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.showcase-feature:hover img,
.showcase-card:hover img {
  transform: scale(1.045);
}

.showcase-feature::after,
.showcase-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 28, 23, 0.04), rgba(17, 28, 23, 0.78));
}

.showcase-feature div,
.showcase-card h3 {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.showcase-feature span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.showcase-feature h3,
.showcase-card h3 {
  margin: 0;
  line-height: 1.2;
}

.showcase-feature h3 {
  font-size: 1.8rem;
}

.showcase-feature p {
  margin: 12px 0 0;
  max-width: 430px;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.7;
}

.showcase-card h3 {
  font-size: 1.08rem;
}

.app-link-card {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.app-link-card:hover {
  transform: translateY(-3px);
}

.app-link-card:focus-visible {
  outline: 3px solid rgba(168, 117, 66, 0.42);
  outline-offset: 4px;
}

.company-section {
  background:
    linear-gradient(180deg, #fffdf8, #f0e7d9);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.company-info,
.company-service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(18, 22, 21, 0.08);
}

.company-info {
  padding: 24px;
}

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

.company-list div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 22, 21, 0.08);
  border-radius: var(--radius);
  background: #f4eee4;
}

.company-list .wide {
  grid-column: 1 / -1;
}

.company-list dt,
.scope-box h3 {
  margin: 0 0 6px;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  word-break: break-word;
}

.scope-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.scope-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.company-service-card {
  margin: 0;
  padding: 28px;
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(184, 148, 93, 0.18), transparent 46%),
    #17231d;
}

.company-service-card > span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.company-service-card h3 {
  margin: 14px 0 12px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.company-service-card p {
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
  line-height: 1.78;
}

.company-service-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.company-service-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 250, 241, 0.84);
  line-height: 1.55;
}

.company-service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.order-section {
  background:
    linear-gradient(135deg, rgba(17, 28, 23, 0.92), rgba(38, 59, 50, 0.88)),
    var(--deep);
  color: #fffaf1;
}

.order-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: #fffaf1;
  font-weight: 800;
}

.order-form .wide,
.form-submit {
  grid-column: 1 / -1;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 4px;
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
  padding: 0 14px;
  outline: none;
}

.order-form textarea {
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(255, 250, 241, 0.45);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 93, 0.14);
}

.form-submit {
  width: fit-content;
  min-width: 190px;
  justify-self: end;
  border: 0;
}

.order-result {
  display: none;
  width: min(900px, 100%);
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid rgba(184, 148, 93, 0.35);
  border-radius: var(--radius);
  color: #fffaf1;
  background: rgba(255, 253, 248, 0.08);
  line-height: 1.7;
}

.order-result.show {
  display: block;
}

.order-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.order-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.order-action {
  min-height: 42px;
  border-color: rgba(255, 250, 241, 0.24);
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
}

.order-action:hover {
  border-color: var(--gold);
  background: rgba(184, 148, 93, 0.16);
}

.order-note {
  margin: 12px 0 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px 38px;
  color: #fffaf1;
  background: #0f241d;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 241, 0.62);
}

.footer-link {
  color: var(--gold);
  font-weight: 850;
}

.product-page .site-header {
  background: rgba(255, 255, 252, 0.94);
  box-shadow: 0 10px 32px rgba(16, 20, 17, 0.08);
}

.product-page-main {
  padding-top: 70px;
}

.detail-main {
  padding-top: 92px;
}

.product-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  overflow: hidden;
  padding: 94px 38px 58px;
  color: #fffaf1;
  isolation: isolate;
}

.product-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.product-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 28, 21, 0.82), rgba(9, 28, 21, 0.28)),
    linear-gradient(0deg, rgba(9, 28, 21, 0.68), rgba(9, 28, 21, 0.06));
}

.product-hero-copy {
  width: min(780px, 100%);
}

.product-hero h1 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.product-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 250, 241, 0.82);
  line-height: 1.85;
}

.product-detail-shell {
  padding: 42px 38px 28px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.detail-gallery {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
  box-shadow: var(--shadow);
}

.detail-gallery img {
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.detail-gallery-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #fffaf1;
  border: 1px solid var(--line-dark);
  background: rgba(17, 28, 23, 0.82);
  backdrop-filter: blur(14px);
}

.detail-gallery-note span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.detail-gallery-note strong {
  font-size: 0.88rem;
}

.detail-summary {
  display: grid;
  align-content: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(18, 22, 21, 0.1);
}

.detail-back {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 0.88rem;
  font-weight: 850;
}

.detail-back svg {
  width: 17px;
  height: 17px;
}

.detail-summary h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.detail-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
}

.detail-description {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.detail-key-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.detail-key-specs div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(18, 22, 21, 0.08);
  border-radius: 4px;
  background: #f3ece1;
}

.detail-key-specs dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-key-specs dd {
  margin: 0;
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.detail-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.detail-outline {
  color: var(--deep);
  border-color: rgba(18, 22, 21, 0.18);
  background: transparent;
}

.detail-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.detail-panel {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(18, 22, 21, 0.07);
}

.detail-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.detail-panel li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.detail-panel-dark {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(168, 117, 66, 0.22), transparent 42%),
    var(--deep);
}

.detail-panel-dark h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.detail-panel-dark p:last-child {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.75;
}

.detail-empty {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.detail-empty h1 {
  margin: 0;
  font-size: 3.2rem;
}

.detail-empty p:not(.eyebrow) {
  margin: 16px 0 28px;
  color: var(--muted);
}

.related-section {
  padding-top: 48px;
}

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

.origin-advantage-section {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  min-width: 0;
}

.origin-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 16px;
  min-width: 0;
}

.origin-story-card,
.origin-point-card,
.origin-compare-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(18, 22, 21, 0.07);
}

.origin-story-card {
  min-height: 300px;
  padding: 30px;
}

.origin-story-card h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 2.1rem;
  line-height: 1.08;
}

.origin-story-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.origin-story-accent {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.28), transparent 42%),
    var(--deep);
}

.origin-story-accent ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.origin-story-accent li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.65;
}

.origin-story-accent li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.origin-points-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.origin-point-card {
  min-height: 200px;
  padding: 22px;
}

.origin-point-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.origin-point-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.origin-compare-card {
  padding: 26px;
}

.origin-compare-card .section-heading {
  margin-bottom: 18px;
}

.origin-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.origin-compare-table {
  min-width: 980px;
  background: #fff;
}

.origin-compare-table td:first-child {
  color: var(--deep);
  font-weight: 900;
}

.origin-buyer-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  background: #fff7ef;
  line-height: 1.65;
}

.product-card.compact {
  grid-template-columns: 1fr;
  min-height: 0;
}

.product-card.compact .product-media {
  height: 220px;
  min-height: 220px;
}

.product-card.compact .product-body {
  min-height: 330px;
}

.detail-buyer-section,
.detail-matrix-section,
.detail-process-section,
.detail-faq-section {
  margin-top: 28px;
}

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

.buyer-card,
.detail-table-card,
.detail-doc-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(18, 22, 21, 0.07);
}

.buyer-card {
  min-height: 190px;
  padding: 22px;
}

.buyer-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.buyer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-matrix-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
}

.detail-table-card,
.detail-doc-card {
  padding: 24px;
}

.trade-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.trade-table th {
  color: var(--deep);
  background: #f7f4ec;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trade-table td {
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.trade-table tr:last-child td {
  border-bottom: 0;
}

.detail-doc-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-doc-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-doc-card li::before {
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(242, 106, 33, 0.26);
  content: "";
}

.detail-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(18, 22, 21, 0.07);
}

.detail-process-grid div {
  min-height: 140px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.detail-process-grid div:last-child {
  border-right: 0;
}

.detail-process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.detail-process-grid strong {
  display: block;
  color: var(--deep);
  line-height: 1.45;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.application-main {
  padding-top: 86px;
}

.application-detail-shell {
  padding: 38px;
}

.application-hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.application-hero-media,
.application-hero-copy,
.application-panel,
.application-process-grid,
.application-scene-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(16, 20, 17, 0.08);
}

.application-hero-media {
  min-height: 620px;
  overflow: hidden;
  background: var(--panel-2);
}

.application-hero-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.application-hero-copy {
  display: grid;
  align-content: center;
  padding: 48px;
}

.application-hero-copy h1 {
  margin: 0;
  color: var(--deep);
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.application-hero-copy p:not(.eyebrow),
.application-panel li {
  color: var(--muted);
  line-height: 1.75;
}

.application-subtitle {
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 900;
}

.application-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.application-stats span {
  display: grid;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(18, 22, 21, 0.1);
  border-radius: 4px;
  color: var(--deep);
  background: #f5f1e9;
  font-weight: 900;
  line-height: 1.35;
}

.application-panel-grid,
.application-process-section,
.application-related-section,
.application-more-section {
  width: min(1280px, 100%);
  margin: 24px auto 0;
}

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

.application-panel {
  min-height: 360px;
  padding: 24px;
}

.application-panel h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 1.42rem;
  line-height: 1.22;
}

.application-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-panel li {
  position: relative;
  padding-left: 18px;
}

.application-panel li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.application-panel-accent {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(168, 117, 66, 0.25), transparent 44%),
    var(--deep);
}

.application-panel-accent h2 {
  color: #fffaf1;
}

.application-panel-accent li {
  color: rgba(255, 250, 241, 0.78);
}

.application-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.application-process-grid div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.application-process-grid div:last-child {
  border-right: 0;
}

.application-process-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.application-process-grid strong {
  display: block;
  color: var(--deep);
  line-height: 1.45;
}

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

.application-scene-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.application-scene-card:hover {
  border-color: rgba(168, 117, 66, 0.42);
  box-shadow: 0 24px 56px rgba(16, 20, 17, 0.12);
  transform: translateY(-2px);
}

.application-scene-card img {
  height: 190px;
  object-fit: cover;
}

.application-scene-card span,
.application-scene-card strong {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.application-scene-card span {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.application-scene-card strong {
  min-height: 70px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--deep);
  line-height: 1.35;
}

.market-section,
.proof-section {
  background: transparent;
}

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

.market-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(32, 39, 34, 0.07);
}

.market-card img {
  height: 230px;
  object-fit: cover;
}

.market-card div {
  padding: 22px;
}

.market-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.market-card h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 1.18rem;
  line-height: 1.3;
}

.market-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.proof-copy,
.proof-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(32, 39, 34, 0.07);
}

.proof-copy {
  display: grid;
  align-content: center;
  padding: 30px;
}

.proof-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: 2.1rem;
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.proof-grid div {
  display: grid;
  gap: 14px;
  min-height: 155px;
  align-content: center;
  padding: 22px;
  background: var(--panel);
}

.proof-grid svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  stroke-width: 1.8;
}

.proof-grid span {
  color: var(--deep);
  font-weight: 850;
  line-height: 1.45;
}

.reveal,
.reveal-card {
  opacity: 1;
  transform: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, 0.8%, 0);
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid,
  .detail-info-grid,
  .detail-matrix-section,
  .detail-process-grid,
  .origin-story-grid,
  .application-hero-panel,
  .application-panel-grid,
  .application-process-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .buyer-card-grid,
  .origin-points-grid,
  .application-scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-process-grid div,
  .application-process-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-process-grid div:last-child,
  .application-process-grid div:last-child {
    border-bottom: 0;
  }

  .detail-gallery,
  .detail-gallery img,
  .application-hero-media,
  .application-hero-media img {
    min-height: 520px;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .shop-layout,
  .studio-section,
  .company-layout,
  .market-grid,
  .proof-section,
  .news-grid,
  .case-grid,
  .qa-service-grid,
  .logistics-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-bar {
    position: relative;
    top: auto;
  }

  .showcase-feature {
    grid-column: auto;
  }

  .showcase-feature,
  .showcase-card {
    min-height: 360px;
  }

  .basket-panel {
    position: relative;
    top: auto;
  }

  .studio-section {
    gap: 30px;
  }

  .studio-copy {
    max-width: none;
  }

  .product-page-main {
    padding-top: 118px;
  }

  .detail-main {
    padding-top: 140px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand span:last-child,
  .cart-pill span {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .lang-button {
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .main-nav {
    gap: 18px;
    padding-bottom: 2px;
    font-size: 0.86rem;
  }

  .hero,
  .section,
  .proof-section,
  .studio-section,
  .site-footer,
  .product-hero,
  .product-detail-shell,
  .application-detail-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

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

  .product-media {
    height: 230px;
    min-height: 230px;
  }

  .product-actions,
  .detail-cta-row,
  .detail-key-specs,
  .related-grid,
  .buyer-card-grid,
  .origin-points-grid,
  .application-stats,
  .application-scene-grid {
    grid-template-columns: 1fr;
  }

  .detail-table-card,
  .detail-doc-card,
  .sourcing-table-wrap,
  .origin-compare-table-wrap {
    overflow-x: auto;
    max-width: 100%;
  }

  .trade-table,
  .origin-compare-table {
    min-width: 640px;
  }

  .origin-story-card,
  .origin-compare-card {
    padding: 22px;
  }

  .origin-story-card h2 {
    font-size: 1.72rem;
  }

  .order-form,
  .company-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .studio-copy h2 {
    font-size: 2.05rem;
  }

  .studio-image-wrap,
  .studio-image-wrap img {
    min-height: 360px;
  }

  .studio-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .showcase-feature,
  .showcase-card {
    min-height: 340px;
  }

  .section,
  .studio-section {
    scroll-margin-top: 132px;
  }

  .product-page-main {
    padding-top: 116px;
  }

  .detail-main {
    padding-top: 132px;
  }

  .product-hero {
    min-height: 360px;
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .product-hero h1 {
    font-size: 2.8rem;
  }

  .product-detail-shell {
    padding-top: 24px;
  }

  .detail-gallery,
  .detail-gallery img,
  .application-hero-media,
  .application-hero-media img {
    min-height: 420px;
  }

  .detail-summary,
  .application-hero-copy {
    padding: 26px;
  }

  .application-hero-copy h1 {
    font-size: 2.7rem;
  }

  .detail-summary h1 {
    font-size: 2.8rem;
  }

  .detail-panel {
    min-height: 0;
  }

  .form-submit {
    justify-self: stretch;
  }

  .site-footer {
    display: grid;
  }
}

.form-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-cta-row .button {
  min-height: 46px;
}

.direct-contact-link {
  border-color: rgba(23, 32, 28, 0.16);
  color: var(--deep);
  background: #fff;
}

.fixed-contact-bar {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 8px;
  width: min(260px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(23, 32, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.95);
  box-shadow: 0 18px 52px rgba(16, 20, 17, 0.18);
  backdrop-filter: blur(18px);
}

.fixed-contact-title {
  padding: 0 4px 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fixed-contact-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 6px;
  color: var(--deep);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: left;
}

.fixed-contact-button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.fixed-contact-button.whatsapp {
  color: #fff;
  border-color: #1f8f55;
  background: #1f8f55;
}

.fixed-contact-button.email {
  border-color: rgba(168, 117, 66, 0.32);
  background: #fff8ed;
}

.fixed-contact-button.inquiry {
  color: #fff;
  border-color: var(--deep);
  background: var(--deep);
}

.fixed-contact-button.kakao {
  color: #17120c;
  border-color: #f0d245;
  background: #f7df55;
}

.ad-landing {
  background: #fbfaf5;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  align-items: end;
  padding: 130px 6vw 70px;
  overflow: hidden;
  color: #fffaf1;
}

.landing-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.landing-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 22, 17, 0.84), rgba(9, 22, 17, 0.45), rgba(9, 22, 17, 0.18)),
    linear-gradient(0deg, rgba(9, 22, 17, 0.7), transparent 48%);
  content: "";
}

.landing-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.landing-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
}

.landing-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
  font-weight: 850;
}

.landing-band {
  padding: 74px 6vw;
}

.landing-band.alt {
  background: #f1f2ea;
}

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

.landing-card,
.landing-table-card {
  border: 1px solid rgba(23, 32, 28, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(23, 32, 28, 0.07);
}

.landing-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
}

.landing-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-card h2,
.landing-table-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: 1.28rem;
  line-height: 1.24;
}

.landing-card p,
.landing-table-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.landing-table-card {
  padding: 28px;
  overflow-x: auto;
}

.landing-table-card table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.landing-table-card th,
.landing-table-card td {
  padding: 14px;
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  text-align: left;
  vertical-align: top;
}

.landing-table-card th {
  color: var(--deep);
  background: #f7f8f2;
}

.landing-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .landing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 152px;
  }

  .fixed-contact-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .fixed-contact-title {
    grid-column: 1 / -1;
    padding-left: 2px;
  }

  .fixed-contact-button {
    justify-content: center;
    gap: 5px;
    min-width: 0;
    padding: 0 6px;
    font-size: 0.7rem;
  }

  .fixed-contact-button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-cta-row,
  .landing-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .landing-hero {
    min-height: 86svh;
    padding: 112px 20px 56px;
  }

  .ad-landing .landing-hero {
    min-height: 100svh;
    padding-bottom: 220px;
  }

  .ad-landing .landing-hero-copy {
    gap: 14px;
    transform: translateY(-44px);
  }

  .landing-hero h1 {
    font-size: 3rem;
  }

  .ad-landing .landing-hero h1 {
    font-size: 2.48rem;
    line-height: 0.98;
  }

  .ad-landing .landing-hero p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .ad-landing .landing-proof {
    display: none;
  }

  .landing-band {
    padding: 54px 20px;
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-bottom: 170px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

/* Dummen-inspired clean export look */
:root {
  --ink: #202722;
  --muted: #67716b;
  --paper: #f5f4ef;
  --panel: #ffffff;
  --panel-2: #ebe9e1;
  --deep: #1d2a23;
  --pine: #2f5b48;
  --sage: #e9efe6;
  --wine: #dd5f16;
  --rose: #e7a36c;
  --gold: #f26a21;
  --line: rgba(32, 39, 34, 0.11);
  --line-dark: rgba(32, 39, 34, 0.13);
  --shadow: 0 18px 46px rgba(32, 39, 34, 0.1);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 180px, var(--paper) 720px),
    var(--paper);
}

.site-header,
.product-page .site-header {
  color: var(--deep);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(32, 39, 34, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(32, 39, 34, 0.08);
}

.brand-mark {
  color: #fff;
  border: 0;
  background: var(--gold);
}

.main-nav {
  color: rgba(29, 42, 35, 0.68);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.lang-switch,
.cart-pill {
  border-color: rgba(32, 39, 34, 0.12);
  background: #fff;
}

.lang-button {
  color: rgba(29, 42, 35, 0.64);
}

.lang-button.active,
.cart-pill strong {
  color: #fff;
  background: var(--gold);
}

.cart-pill {
  color: var(--deep);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(23, 42, 34, 0.7), rgba(23, 42, 34, 0.28) 52%, rgba(23, 42, 34, 0.03)),
    linear-gradient(0deg, rgba(23, 42, 34, 0.62), rgba(23, 42, 34, 0.02) 58%);
}

.eyebrow,
.eyebrow.dark,
.product-code,
.footer-link,
.order-result strong {
  color: var(--gold);
}

.button.primary,
.add-button,
.filter-button.active {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(242, 106, 33, 0.22);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.section,
.studio-section,
.catalog-section,
.news-section,
.cases-section,
.company-section,
.order-section,
.related-section {
  background: transparent;
}

.filter-bar,
.basket-panel,
.news-card,
.case-card,
.company-info,
.order-form,
.detail-summary,
.detail-panel,
.detail-empty {
  border-color: rgba(32, 39, 34, 0.1);
  background: #fff;
  box-shadow: 0 16px 44px rgba(32, 39, 34, 0.08);
}

.filter-button {
  color: var(--deep);
  border-color: rgba(32, 39, 34, 0.12);
  background: #fff;
}

.product-card {
  border-color: rgba(32, 39, 34, 0.1);
  background: #fff;
  box-shadow: 0 16px 42px rgba(32, 39, 34, 0.07);
}

.product-card:hover {
  border-color: rgba(242, 106, 33, 0.42);
  box-shadow: 0 24px 60px rgba(32, 39, 34, 0.12);
}

.product-badge,
.product-card[data-tone="红粉色"] .product-badge,
.product-card[data-tone="柔粉色"] .product-badge,
.product-card[data-tone="紫调色"] .product-badge,
.product-card[data-tone="暖橙色"] .product-badge {
  color: #9f3c05;
  border-color: rgba(242, 106, 33, 0.18);
  background: #fff0e5;
}

.meta-list li,
.detail-key-specs div {
  color: var(--deep);
  border-color: rgba(32, 39, 34, 0.08);
  background: #f8f7f2;
}

.detail-link,
.detail-outline {
  color: var(--deep);
  border-color: rgba(32, 39, 34, 0.12);
  background: #fff;
}

.product-hero::after {
  background:
    linear-gradient(90deg, rgba(23, 42, 34, 0.7), rgba(23, 42, 34, 0.24)),
    linear-gradient(0deg, rgba(23, 42, 34, 0.58), rgba(23, 42, 34, 0.02));
}

.detail-gallery,
.studio-image-wrap {
  border-color: rgba(32, 39, 34, 0.1);
  box-shadow: 0 18px 52px rgba(32, 39, 34, 0.1);
}

.detail-gallery-note {
  color: #fff;
  border: 0;
  background: rgba(242, 106, 33, 0.94);
}

.detail-gallery-note span {
  color: #fff;
}

.detail-panel li::before {
  background: var(--gold);
}

.detail-panel-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 46%),
    var(--gold);
}

.detail-panel-dark .eyebrow,
.detail-panel-dark h2,
.detail-panel-dark p:last-child {
  color: #fff;
}

.site-footer {
  background: #202722;
}

/* Premium botanical trade direction */
:root {
  --ink: #17201c;
  --muted: #66746d;
  --paper: #f6f8f4;
  --panel: #ffffff;
  --panel-2: #edf3ee;
  --deep: #172a22;
  --pine: #315b49;
  --sage: #e8f0e9;
  --wine: #7f2745;
  --rose: #d88472;
  --gold: #e96b48;
  --line: rgba(23, 32, 28, 0.1);
  --line-dark: rgba(23, 32, 28, 0.14);
  --shadow: 0 22px 64px rgba(23, 32, 28, 0.09);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #fbfcfa 260px, #f2f7f1 860px),
    var(--paper);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.product-page .site-header {
  padding: 13px 34px;
  border-top: 0;
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 34px rgba(23, 32, 28, 0.07);
}

.brand {
  gap: 11px;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #173f32, #e96b48);
}

.main-nav {
  gap: 24px;
  color: rgba(23, 42, 34, 0.66);
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  border-bottom: 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--deep);
  border-bottom-color: transparent;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.lang-switch,
.cart-pill {
  border-color: rgba(23, 32, 28, 0.1);
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 32, 28, 0.05);
}

.lang-button.active,
.cart-pill strong,
.button.primary,
.add-button,
.filter-button.active,
.basket-button {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(233, 107, 72, 0.2);
}

.eyebrow,
.eyebrow.dark,
.product-code,
.footer-link,
.order-result strong {
  color: var(--gold);
}

.button {
  border-radius: 6px;
}

.button.secondary,
.detail-link,
.detail-outline {
  color: var(--deep);
  border-color: rgba(23, 32, 28, 0.12);
  background: #fff;
}

.hero {
  min-height: 88svh;
  color: #fff;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 39, 31, 0.72), rgba(18, 39, 31, 0.28) 50%, rgba(18, 39, 31, 0.08)),
    linear-gradient(0deg, rgba(18, 39, 31, 0.66), rgba(18, 39, 31, 0.04) 56%);
}

.hero h1,
.product-hero h1,
.detail-summary h1,
.application-hero-copy h1 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-weight: 600;
}

.hero-strip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 34, 27, 0.72);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
}

.section-heading h2,
.basket-header h2,
.studio-copy h2 {
  color: var(--deep);
}

.catalog-section,
.news-section,
.cases-section,
.service-section,
.showcase-section,
.company-section,
.order-section,
.related-section {
  background: transparent;
}

.product-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 38px;
  align-items: center;
  width: min(1280px, calc(100% - 76px));
  margin: 34px auto 0;
  padding: 58px 0 46px;
  color: var(--deep);
  overflow: visible;
}

.product-hero img {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  height: 430px;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 76px rgba(23, 32, 28, 0.13);
}

.product-hero::after {
  display: none;
}

.product-hero-copy {
  grid-column: 1;
  grid-row: 1;
  width: min(720px, 100%);
  padding: 34px 0;
}

.product-hero h1 {
  max-width: 720px;
  color: var(--deep);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.product-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.product-hero-copy::after {
  display: block;
  width: min(520px, 100%);
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 28, 0.06);
  line-height: 1.6;
  overflow-wrap: anywhere;
  content: "Origin focused · Export specifications · No public pricing";
}

.shop-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.filter-bar {
  top: 82px;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(23, 32, 28, 0.07);
}

.filter-button {
  min-height: 40px;
  border-radius: 6px;
  color: var(--deep);
  border-color: rgba(23, 32, 28, 0.1);
  background: #fff;
}

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

.product-card {
  grid-template-columns: 1fr;
  min-height: 0;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(23, 32, 28, 0.08);
}

.product-card:hover {
  border-color: rgba(233, 107, 72, 0.42);
  box-shadow: 0 30px 70px rgba(23, 32, 28, 0.13);
}

.product-media {
  height: 240px;
  min-height: 240px;
}

.product-body {
  min-height: 360px;
  padding: 22px;
}

.product-kicker {
  align-items: center;
}

.product-code {
  font-size: 0.76rem;
}

.product-top h3 {
  color: var(--deep);
  font-size: 1.48rem;
}

.product-badge,
.product-card[data-tone="红粉色"] .product-badge,
.product-card[data-tone="柔粉色"] .product-badge,
.product-card[data-tone="紫调色"] .product-badge,
.product-card[data-tone="暖橙色"] .product-badge {
  color: var(--pine);
  border-color: rgba(49, 91, 73, 0.14);
  background: #edf4ef;
}

.meta-list li {
  border-color: rgba(23, 32, 28, 0.07);
  background: #f6f8f4;
}

.basket-panel {
  top: 82px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(23, 32, 28, 0.09);
}

.product-detail-shell {
  width: min(1280px, calc(100% - 76px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.detail-hero-grid {
  gap: 22px;
}

.detail-gallery,
.detail-summary,
.detail-panel,
.origin-story-card,
.origin-point-card,
.origin-compare-card,
.buyer-card,
.detail-table-card,
.detail-doc-card,
.faq-list details,
.application-hero-media,
.application-hero-copy,
.application-panel,
.application-process-grid,
.application-scene-card {
  border-color: rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(23, 32, 28, 0.08);
}

.detail-gallery-note {
  border-radius: 6px;
  background: rgba(23, 42, 34, 0.84);
}

.detail-key-specs div {
  border-color: rgba(23, 32, 28, 0.07);
  background: #f6f8f4;
}

.detail-panel-dark,
.origin-story-accent {
  background:
    linear-gradient(135deg, rgba(233, 107, 72, 0.24), transparent 46%),
    #173f32;
}

.origin-buyer-note {
  color: #52615a;
  border-left-color: var(--gold);
  background: #fff5f0;
}

.trade-table th {
  background: #edf4ef;
}

.studio-section,
.site-footer {
  background: #172a22;
}

@media (max-width: 980px) {
  .product-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 18px;
    padding-top: 38px;
  }

  .product-hero img,
  .product-hero-copy {
    grid-column: 1;
  }

  .product-hero img {
    grid-row: 2;
    height: 320px;
    min-height: 320px;
  }

  .product-hero-copy {
    grid-row: 1;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .product-page .site-header {
    padding: 12px 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .product-page-main {
    padding-top: 104px;
  }

  .product-detail-shell,
  .application-detail-shell {
    width: calc(100% - 36px);
    padding-right: 0;
    padding-left: 0;
  }

  .product-hero {
    width: calc(100% - 36px);
    margin-top: 18px;
    padding-bottom: 28px;
  }

  .product-hero h1 {
    font-size: 3rem;
  }

  .product-hero-copy::after {
    font-size: 0.88rem;
    line-height: 1.55;
  }

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

  .product-body {
    min-height: 0;
  }
}

.news-card {
  display: grid;
  align-content: start;
  gap: 0;
  color: inherit;
}

.news-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.news-card:hover h3 {
  color: var(--gold);
}

.articles-main {
  padding: 116px 38px 70px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  width: min(1280px, 100%);
  margin: 0 auto 34px;
  align-items: stretch;
}

.article-hero-copy,
.article-hero-panel,
.trade-article {
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(23, 32, 28, 0.08);
}

.article-hero-copy {
  display: grid;
  align-content: center;
  min-height: 470px;
  padding: 46px;
}

.article-hero-copy h1 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.article-hero-panel {
  display: grid;
  align-content: center;
  padding: 28px;
}

.article-hero-panel > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-index-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.article-index-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 6px;
  background: #f7faf6;
}

.article-index-card:hover {
  border-color: rgba(233, 107, 72, 0.34);
  background: #fff;
}

.article-index-card strong {
  color: var(--deep);
  line-height: 1.35;
}

.article-index-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-stack {
  display: grid;
  gap: 26px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.trade-article {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  scroll-margin-top: 118px;
}

.trade-article-media {
  min-height: 100%;
  background: var(--panel-2);
}

.trade-article-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.trade-article-body {
  min-width: 0;
  padding: 42px;
}

.trade-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.trade-article-meta span {
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 4px;
  color: var(--pine);
  background: #edf4ef;
  font-size: 0.78rem;
  font-weight: 850;
}

.trade-article h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
}

.trade-article-lead {
  margin: 20px 0 0;
  color: #4d5c54;
  font-size: 1.08rem;
  line-height: 1.82;
}

.trade-article-section {
  margin-top: 28px;
}

.trade-article-section h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 1.18rem;
}

.trade-article-section p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.86;
}

.article-takeaways,
.article-sources {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #f7faf6;
}

.article-takeaways strong,
.article-sources strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep);
}

.article-takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-takeaways li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.article-takeaways li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.article-sources {
  display: grid;
  gap: 10px;
}

.article-sources a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .articles-main {
    padding: 116px 18px 48px;
  }

  .article-hero,
  .trade-article {
    grid-template-columns: 1fr;
  }

  .article-hero-copy {
    min-height: 0;
    padding: 32px;
  }

  .trade-article-media img {
    min-height: 340px;
  }

  .trade-article-body {
    padding: 30px;
  }
}

@media (max-width: 720px) {
  .article-hero-copy,
  .article-hero-panel,
  .trade-article-body {
    padding: 24px;
  }

  .article-hero-copy h1 {
    font-size: 2.12rem;
    line-height: 1.06;
    overflow-wrap: normal;
  }
}

.split-catalog {
  display: grid;
  gap: 56px;
}

.product-column {
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(23, 32, 28, 0.1);
}

.product-column:last-child {
  border-bottom: 0;
}

.product-column-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
}

.product-column-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1;
  letter-spacing: 0;
}

.product-column-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.column-count {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-left: 4px solid var(--gold);
  color: var(--deep);
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 28, 0.06);
  font-size: 0.88rem;
  white-space: nowrap;
}

.spec-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(233, 107, 72, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 107, 72, 0.1), transparent 42%),
    #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 28, 0.06);
}

.plant-spec-panel {
  border-color: rgba(49, 91, 73, 0.18);
  background:
    linear-gradient(135deg, rgba(49, 91, 73, 0.12), transparent 42%),
    #fff;
}

.spec-request-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 1rem;
}

.spec-request-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.spec-request-link {
  white-space: nowrap;
}

.plant-spec-button,
.button.primary.plant-spec-button {
  border-color: #315b49;
  background: #315b49;
  box-shadow: 0 14px 28px rgba(49, 91, 73, 0.18);
}

.split-filter {
  position: static;
  margin-bottom: 22px;
}

.green-column .product-column-header {
  border-bottom-color: rgba(18, 82, 52, 0.16);
}

.green-column .column-count {
  border-left-color: #4f7f45;
}

.product-choice {
  min-width: 182px;
  min-height: 54px;
  justify-content: flex-start;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.product-choice svg {
  width: 21px;
  height: 21px;
}

.flower-choice,
.button.primary.flower-choice {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #e96b48, #9a2748);
}

.plant-choice,
.button.primary.plant-choice {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, #214a3a, #5f8b4d);
}

.catalog-entry-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 740px;
  margin-top: 26px;
}

.compact-entry-buttons {
  width: min(760px, 100%);
  margin: 26px auto 0;
}

.catalog-entry-card {
  position: relative;
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 8px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  color: var(--deep);
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 32, 28, 0.08);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.catalog-entry-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.16;
  content: "";
}

.catalog-entry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(23, 32, 28, 0.13);
}

.catalog-entry-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  stroke-width: 1.8;
}

.catalog-entry-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.catalog-entry-card strong {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 1.62rem;
  line-height: 1.05;
}

.catalog-entry-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.flower-entry {
  border-color: rgba(233, 107, 72, 0.18);
  background:
    linear-gradient(135deg, rgba(233, 107, 72, 0.13), rgba(255, 255, 255, 0) 48%),
    #fff;
}

.flower-entry::after {
  background: #e96b48;
}

.flower-entry svg {
  color: #c24649;
}

.plant-entry {
  border-color: rgba(49, 91, 73, 0.2);
  background:
    linear-gradient(135deg, rgba(49, 91, 73, 0.14), rgba(255, 255, 255, 0) 48%),
    #fff;
}

.plant-entry::after {
  background: #315b49;
}

.plant-entry svg {
  color: #315b49;
}

.language-select-wrap,
.trade-contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 32, 28, 0.05);
}

.language-select-wrap {
  gap: 8px;
  padding: 0 10px;
}

.language-select-wrap svg,
.trade-contact-pill svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.language-select {
  min-width: 124px;
  border: 0;
  color: var(--deep);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 850;
  outline: 0;
}

.trade-contact-pill {
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.trade-catalog-layout {
  grid-template-columns: minmax(0, 1fr);
}

.trade-catalog-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-featured-catalog {
  display: grid;
  gap: 34px;
  margin-top: 42px;
}

.home-featured-column {
  display: grid;
  gap: 18px;
}

.home-featured-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(23, 32, 28, 0.06);
}

.home-featured-header h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.home-featured-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.home-product-grid .product-card.compact .product-media {
  height: 190px;
  min-height: 190px;
}

.home-product-grid .product-card.compact .product-body {
  min-height: 300px;
}

@media (max-width: 1100px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.order-section {
  background:
    linear-gradient(135deg, rgba(17, 28, 23, 0.95), rgba(38, 59, 50, 0.9)),
    var(--deep);
  color: #fffaf1;
}

.order-section .section-heading h2 {
  color: #fffaf1;
}

.order-section .eyebrow.dark {
  color: var(--gold);
}

.order-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.76);
}

.order-form {
  border-color: rgba(23, 32, 28, 0.08);
  background: #fff;
  box-shadow: 0 22px 58px rgba(23, 32, 28, 0.1);
}

.order-form label {
  color: var(--deep);
}

.order-form input,
.order-form select,
.order-form textarea {
  color: var(--deep);
  border-color: rgba(23, 32, 28, 0.13);
  background: #f8faf7;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(23, 32, 28, 0.46);
}

.order-result.show {
  color: var(--deep);
  background: #fff;
}

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

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

.detail-mode-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(23, 32, 28, 0.08);
}

.detail-mode-section h2 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.detail-mode-section p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-mode-grid article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: #f8faf7;
}

.detail-mode-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flower-mode {
  border-top: 4px solid #e96b48;
}

.plant-mode {
  border-top: 4px solid #315b49;
}

@media (max-width: 720px) {
  .split-catalog {
    gap: 42px;
  }

  .product-column {
    padding-bottom: 42px;
  }

  .product-column-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .spec-request-panel {
    grid-template-columns: 1fr;
  }

  .spec-request-link {
    white-space: normal;
  }

  .column-count {
    width: fit-content;
  }

  .product-choice {
    width: 100%;
    justify-content: center;
  }

  .catalog-entry-buttons {
    grid-template-columns: 1fr;
  }

  .catalog-entry-card {
    min-height: 128px;
  }

  .language-select {
    min-width: 104px;
  }

  .trade-contact-pill span {
    display: none;
  }

  .trade-catalog-layout .product-grid,
  .home-product-grid,
  .logistics-grid,
  .split-catalog .product-grid,
  .related-grid,
  .detail-mode-section,
  .detail-mode-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-header {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
