:root {
  --ink: #17211c;
  --muted: #5f6f67;
  --line: #dce5df;
  --paper: #f7faf6;
  --white: #ffffff;
  --leaf: #1f7a4d;
  --leaf-dark: #0e5135;
  --mint: #d9f2df;
  --blue: #2c6f8f;
  --clay: #b96543;
  --gold: #c59b3b;
  --shadow: 0 24px 70px rgba(17, 39, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(217, 242, 223, 0.85), transparent 28%),
    linear-gradient(180deg, #fbf8ee 0%, var(--paper) 24%, #ffffff 100%);
  color: var(--ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 246, 0.92);
  border-bottom: 1px solid rgba(220, 229, 223, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
}

.brand-logo-mark {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2e4037;
  font-size: 14px;
  pointer-events: auto;
}

.main-nav a {
  padding: 8px 2px;
  pointer-events: auto;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta {
  padding: 8px 16px !important;
  background: var(--leaf-dark);
  color: var(--white);
  pointer-events: auto;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  pointer-events: auto;
}

section {
  scroll-margin-top: 90px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100vh - 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 82px) clamp(18px, 5vw, 72px) 26px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.4), rgba(235, 246, 235, 0.88)),
    radial-gradient(circle at 86% 24%, rgba(31, 122, 77, 0.16), transparent 34%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.section-copy,
.product-card p,
.bundle-card p,
.consumable-grid p,
.scene-story p,
.support-grid p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  border: 0;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
}

.button.primary {
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(14, 81, 53, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--leaf-dark);
}

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

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats dt {
  color: var(--leaf-dark);
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
}

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

.hero-dock a {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(17, 39, 29, 0.08);
}

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

.hero-dock strong {
  color: var(--leaf-dark);
  font-size: 15px;
}

.hero-dock span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: min(72vh, 680px);
  padding: clamp(18px, 3vw, 34px);
  pointer-events: none;
}

.hero-photo {
  position: relative;
  min-height: min(68vh, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(14, 81, 53, 0.08)),
    linear-gradient(135deg, #f1f7ef, #fff7e2);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: auto 7% 0;
  height: 38%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(2px);
  z-index: 1;
}

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

.asset-image,
.card-image,
.scene-image,
.seed-image {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: #edf4e9;
}

.card-image,
.scene-image,
.seed-image {
  height: clamp(150px, 16vw, 220px);
  margin-bottom: 16px;
}

.scene-image {
  height: clamp(180px, 20vw, 260px);
}

.seed-image {
  height: clamp(130px, 14vw, 180px);
}

.asset-image {
  height: 100%;
  min-height: 320px;
}

.asset-visual {
  padding: 0;
}

.asset-visual::before,
.asset-visual::after {
  display: none;
}

.css-hydroponic {
  position: absolute;
  inset: 9% 10% 8%;
  display: none;
  z-index: 2;
  pointer-events: none;
}

.hero-photo img[hidden] + .css-hydroponic {
  display: block;
}

.css-light,
.css-shelf,
.css-reservoir {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
}

.css-light {
  top: 4%;
  width: 74%;
  height: 16px;
  background: linear-gradient(90deg, #f7d65f, #fff6bf, #f7d65f);
  box-shadow: 0 0 42px rgba(247, 214, 95, 0.6);
}

.css-shelf {
  width: 74%;
  height: 76px;
  border: 8px solid #d9e2dd;
  border-top-color: var(--leaf);
  background:
    radial-gradient(circle at 14% 58%, #3da25f 0 12px, transparent 13px),
    radial-gradient(circle at 29% 44%, #84c56a 0 14px, transparent 15px),
    radial-gradient(circle at 48% 54%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 67% 48%, #8dcf6e 0 14px, transparent 15px),
    radial-gradient(circle at 84% 57%, #2f8f55 0 12px, transparent 13px),
    #fff;
}

.shelf-one { top: 16%; }
.shelf-two { top: 38%; }
.shelf-three { top: 60%; }

.css-reservoir {
  bottom: 2%;
  width: 64%;
  height: 42px;
  background: linear-gradient(90deg, var(--leaf-dark), var(--blue));
  box-shadow: inset 0 10px 0 rgba(255,255,255,0.14);
}

.floating-card {
  position: absolute;
  z-index: 4;
  max-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(17, 39, 29, 0.16);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--leaf-dark);
  line-height: 1.25;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
}

.card-main { top: 7%; left: 0; }
.card-refill { top: 26%; right: 0; }
.card-scenes { bottom: 20%; left: 2%; }
.card-seeds { right: 5%; bottom: 6%; border-color: rgba(197, 155, 59, 0.5); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 22px;
  background: var(--white);
}

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

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 6vw, 80px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.entry-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 239, 0.94)),
    radial-gradient(circle at 90% 16%, rgba(44, 111, 143, 0.12), transparent 30%);
}

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

.site-entry-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 39, 29, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.site-entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 122, 77, 0.42);
  box-shadow: 0 22px 54px rgba(17, 39, 29, 0.13);
}

.site-entry-card span {
  color: var(--gold);
  font-weight: 900;
}

.site-entry-card strong {
  margin-top: 18px;
  color: var(--leaf-dark);
  font-size: 22px;
  line-height: 1.2;
}

.site-entry-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.primary-entry,
.cta-entry {
  background:
    linear-gradient(145deg, rgba(14, 81, 53, 0.96), rgba(31, 122, 77, 0.9)),
    var(--leaf-dark);
  color: var(--white);
}

.primary-entry span,
.primary-entry strong,
.primary-entry p,
.cta-entry span,
.cta-entry strong,
.cta-entry p {
  color: var(--white);
}

.product-grid,
.seed-wall,
.scene-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.product-card,
.seed-card,
.scene-grid article,
.support-grid article,
.consumable-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.bundles-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(197, 155, 59, 0.18), transparent 30%),
    linear-gradient(180deg, #fff, #f5fbf5);
}

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

.bundle-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 39, 29, 0.08);
}

.bundle-card.highlighted {
  border-color: rgba(31, 122, 77, 0.4);
  background: linear-gradient(180deg, #ffffff, #f0f8ef);
}

.bundle-visual {
  position: relative;
  min-height: 150px;
  margin: -4px -4px 18px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #ecf6ee, #fff5d7);
}

.bundle-visual::before,
.bundle-visual::after {
  content: "";
  position: absolute;
}

.bundle-visual::before {
  inset: 26px 20% 28px;
  border: 8px solid rgba(14, 81, 53, 0.16);
  border-top-color: var(--leaf);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 62%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 40% 44%, #8dcf6e 0 15px, transparent 16px),
    radial-gradient(circle at 64% 57%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 82% 50%, #d34f52 0 10px, transparent 11px),
    rgba(255,255,255,0.82);
}

.bundle-visual::after {
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--clay));
  box-shadow: -42px -14px 0 -16px rgba(31, 122, 77, 0.8);
}

.bundle-edu .bundle-visual {
  background: linear-gradient(135deg, #e8f5ff, #f2fbef);
}

.bundle-food .bundle-visual {
  background: linear-gradient(135deg, #fff2e5, #eef8f0);
}

.bundle-card dl {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.bundle-card dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

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

.bundle-card a,
.seed-card a,
.scene-story a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
}

.product-card {
  padding: 18px;
}

.product-card.featured {
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: 0 18px 42px rgba(31, 122, 77, 0.1);
}

.product-illustration {
  position: relative;
  min-height: 160px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, #edf8ef, #fff);
  overflow: hidden;
}

.product-illustration::before,
.product-illustration::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.product-illustration::before {
  bottom: 26px;
  width: 58%;
  height: 18px;
  border-radius: 30px;
  background: var(--leaf-dark);
}

.product-illustration::after {
  bottom: 44px;
  width: 48%;
  height: 82px;
  border: 8px solid #d9e2dd;
  border-top-color: var(--gold);
  border-radius: 6px;
}

.family-unit::after {
  height: 110px;
}

.commercial-unit::after {
  width: 60%;
  height: 122px;
}

.seed-unit::before {
  width: 64%;
  background: linear-gradient(90deg, var(--leaf-dark), var(--clay), var(--gold));
}

.seed-unit::after {
  width: 54%;
  height: 96px;
  border-color: #d5efe0;
  border-top-color: var(--leaf);
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf-dark) !important;
  font-size: 13px;
  font-weight: 800;
}

.product-card ul {
  min-height: 96px;
  margin: 18px 0;
  padding-left: 20px;
  color: #33493d;
}

.product-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 700;
}

.comparison-section {
  background: var(--white);
}

.plantmaster-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(44, 111, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fcfb, #eef6f0);
}

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

.system-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(44, 111, 143, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(17, 39, 29, 0.08);
}

.system-feature {
  grid-row: span 2;
  background: linear-gradient(145deg, #ffffff, #e6f3ef);
}

.system-phone {
  display: grid;
  gap: 12px;
  width: min(230px, 80%);
  margin: 0 auto 18px;
  padding: 22px 18px;
  border: 10px solid #17211c;
  border-radius: 28px;
  background: #f7faf6;
  box-shadow: 0 18px 38px rgba(17, 39, 29, 0.16);
}

.system-phone span {
  color: var(--leaf-dark);
  font-weight: 900;
  text-align: center;
}

.system-phone i {
  display: block;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e9f5eb, #ffffff);
  border: 1px solid var(--line);
}

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

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef6f0;
  color: var(--leaf-dark);
}

.scenes {
  background:
    linear-gradient(180deg, #edf5f0, #fffaf0);
}

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

.scene-story {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 34px rgba(17, 39, 29, 0.08);
}

.scene-story:nth-child(even) .scene-art {
  order: 2;
}

.scene-story span {
  color: var(--clay);
  font-weight: 900;
}

.scene-art {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #f8fff7, #e0efe3);
}

.scene-art::before,
.scene-art::after {
  content: "";
  position: absolute;
}

.scene-art::before {
  left: 18%;
  right: 18%;
  bottom: 22px;
  height: 96px;
  border: 7px solid rgba(14, 81, 53, 0.18);
  border-top-color: var(--leaf);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 34%, #2f8f55 0 10px, transparent 11px),
    radial-gradient(circle at 38% 55%, #7fc56b 0 12px, transparent 13px),
    radial-gradient(circle at 60% 38%, #2f8f55 0 10px, transparent 11px),
    radial-gradient(circle at 80% 55%, #8ed174 0 12px, transparent 13px),
    white;
}

.scene-art::after {
  inset: auto 10% 10px;
  height: 18px;
  border-radius: 99px;
  background: var(--leaf-dark);
}

.scene-kitchen .scene-art { background: linear-gradient(145deg, #fff4dd, #e8f6e6); }
.scene-education .scene-art { background: linear-gradient(145deg, #eef8ff, #f2f8e8); }
.scene-dining .scene-art { background: linear-gradient(145deg, #fff0e6, #f6fff4); }
.scene-commercial .scene-art { background: linear-gradient(145deg, #eef6f0, #ffffff); }

.support-grid article,
.consumable-grid article {
  padding: 22px;
}

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

.seed-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 242, 223, 0.74), transparent 28%),
    var(--white);
}

.supply-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.supply-columns article {
  padding: 22px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f2f8f0);
  box-shadow: 0 14px 30px rgba(17, 39, 29, 0.07);
}

.supply-columns ul {
  margin: 14px 0 18px;
  padding-left: 20px;
  color: #354a3f;
}

.supply-columns a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
}

.seed-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin-bottom: 18px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8f0, #ffffff 58%, #fff7e2);
  border: 1px solid var(--line);
}

.seed-package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.seed-package-list span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--leaf-dark);
  font-weight: 800;
}

.seed-categories article,
.data-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

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

.seed-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.seed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 122, 77, 0.04) 100%);
  pointer-events: none;
}

.seed-card .seed-art {
  position: relative;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f6e8, #fff);
}

.seed-art::before,
.seed-art::after {
  content: "";
  position: absolute;
}

.seed-art::before {
  left: 28px;
  right: 28px;
  bottom: 22px;
  height: 30px;
  border-radius: 99px;
  background: var(--leaf-dark);
}

.seed-art::after {
  left: 50%;
  top: 28px;
  width: 118px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 999px 999px 20px 20px;
  background:
    radial-gradient(circle at 16% 50%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 35% 36%, #7fc56b 0 15px, transparent 16px),
    radial-gradient(circle at 56% 52%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 76% 40%, #8ed174 0 15px, transparent 16px);
}

.seed-juice .seed-art { background: linear-gradient(135deg, #e4f6e6, #fff2dd); }
.seed-berry .seed-art { background: linear-gradient(135deg, #fff2f0, #eaf8ee); }
.seed-vitamin .seed-art { background: linear-gradient(135deg, #fff6dc, #eef9ef); }
.seed-flower .seed-art { background: linear-gradient(135deg, #fff0f6, #eef8f0); }
.seed-sprout .seed-art { background: linear-gradient(135deg, #f2f0e7, #eaf8ef); }

.seed-berry .seed-art::after {
  background:
    radial-gradient(circle at 18% 54%, #d34f52 0 12px, transparent 13px),
    radial-gradient(circle at 42% 34%, #e86b6e 0 14px, transparent 15px),
    radial-gradient(circle at 66% 54%, #d34f52 0 12px, transparent 13px),
    radial-gradient(circle at 82% 38%, #f0a560 0 10px, transparent 11px);
}

.seed-flower .seed-art::after {
  background:
    radial-gradient(circle at 18% 54%, #eaa1b7 0 12px, transparent 13px),
    radial-gradient(circle at 42% 34%, #f5c26b 0 14px, transparent 15px),
    radial-gradient(circle at 66% 54%, #d978b2 0 12px, transparent 13px),
    radial-gradient(circle at 82% 38%, #ffffff 0 12px, transparent 13px);
}

.seed-categories span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #edf5f0;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 800;
}

.seed-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.seed-card dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

.seed-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.data-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
  background: #eef6f0;
}

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

.data-metrics span {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.data-metrics strong {
  color: var(--leaf-dark);
  font-size: 28px;
  line-height: 1.1;
}

.order-flow {
  background: #fbfaf4;
}

.repurchase-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(44, 111, 143, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #fbfaf4);
}

.cases-section {
  background:
    linear-gradient(180deg, #fffaf0, #ffffff),
    radial-gradient(circle at 14% 12%, rgba(197, 155, 59, 0.16), transparent 24%);
}

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

.case-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(17, 39, 29, 0.08);
}

.case-grid h3,
.case-grid p {
  padding-inline: 18px;
}

.case-grid h3 {
  margin-top: 16px;
}

.case-grid p {
  padding-bottom: 18px;
  color: var(--muted);
}

.case-art {
  position: relative;
  min-height: 190px;
  background: linear-gradient(145deg, #eef8f0, #fff4dc);
}

.case-art::before,
.case-art::after {
  content: "";
  position: absolute;
}

.case-art::before {
  left: 18%;
  right: 18%;
  bottom: 34px;
  height: 102px;
  border: 7px solid rgba(14, 81, 53, 0.18);
  border-top-color: var(--leaf);
  border-radius: 8px;
  background:
    radial-gradient(circle at 17% 40%, #2f8f55 0 12px, transparent 13px),
    radial-gradient(circle at 38% 56%, #8dcf6e 0 14px, transparent 15px),
    radial-gradient(circle at 60% 38%, #2f8f55 0 12px, transparent 13px),
    radial-gradient(circle at 82% 54%, #d34f52 0 11px, transparent 12px),
    white;
}

.case-art::after {
  inset: auto 12% 22px;
  height: 18px;
  border-radius: 99px;
  background: var(--leaf-dark);
}

.case-edu { background: linear-gradient(145deg, #eaf5ff, #f4f9e9); }
.case-food { background: linear-gradient(145deg, #fff0e4, #f1fbef); }
.case-factory { background: linear-gradient(145deg, #eef3f6, #ffffff); }

.repurchase-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repurchase-flow li {
  position: relative;
  min-height: 190px;
  padding: 20px;
  border: 1px solid #e8dcc3;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 39, 29, 0.07);
}

.repurchase-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.repurchase-flow span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay);
  font-weight: 900;
}

.repurchase-flow strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 20px;
}

.repurchase-flow p {
  color: var(--muted);
}

.order-flow ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.order-flow li {
  min-height: 174px;
  padding: 18px;
  border: 1px solid #eadfca;
  border-radius: 8px;
  background: var(--white);
}

.order-flow strong,
.order-flow span {
  display: block;
}

.order-flow strong {
  margin-bottom: 8px;
  color: var(--leaf-dark);
}

.order-flow span {
  color: var(--muted);
  font-size: 14px;
}

.support-section details {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.support-actions a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(31, 122, 77, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef8f0);
  box-shadow: 0 12px 26px rgba(17, 39, 29, 0.07);
}

.support-actions span {
  color: var(--leaf-dark);
  font-size: 20px;
  font-weight: 900;
}

.support-actions small {
  color: var(--muted);
}

.support-section summary {
  cursor: pointer;
  color: var(--leaf-dark);
  font-weight: 800;
}

.agency {
  background: #eef6f0;
}

.quote-section {
  background: var(--leaf-dark);
  color: var(--white);
}

.quote-section .eyebrow,
.quote-section .section-heading p {
  color: #bce7c9;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #e9f7ee;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form .button {
  background: #f6d577;
  color: #223019;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #101a15;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: #b4c0b9;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 122, 77, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef8f0 70%, #fff7e2);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  color: var(--muted);
}

.page-visual,
.detail-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #eef8f0, #fff7df);
  box-shadow: var(--shadow);
}

.page-visual::before,
.page-visual::after,
.detail-visual::before,
.detail-visual::after {
  content: "";
  position: absolute;
}

.page-visual::before,
.detail-visual::before {
  left: 18%;
  right: 18%;
  bottom: 58px;
  height: 132px;
  border: 8px solid rgba(14, 81, 53, 0.16);
  border-top-color: var(--leaf);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 42%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 36% 58%, #8dcf6e 0 15px, transparent 16px),
    radial-gradient(circle at 58% 42%, #2f8f55 0 13px, transparent 14px),
    radial-gradient(circle at 80% 56%, #d34f52 0 12px, transparent 13px),
    #fff;
}

.page-visual::after,
.detail-visual::after {
  inset: auto 12% 38px;
  height: 24px;
  border-radius: 99px;
  background: var(--leaf-dark);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.detail-panel,
.info-panel,
.finder-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 39, 29, 0.08);
}

.detail-panel {
  padding: 22px;
}

.detail-panel dl,
.spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-panel div,
.spec-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-panel dt,
.spec-list dt {
  color: var(--leaf-dark);
  font-weight: 900;
}

.detail-panel dd,
.spec-list dd {
  margin: 0;
  color: var(--muted);
}

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

.commerce-card,
.link-card,
.info-panel,
.finder-panel {
  padding: 22px;
}

.commerce-card,
.link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 39, 29, 0.07);
}

.commerce-card p,
.link-card p,
.info-panel p,
.finder-panel p {
  color: var(--muted);
}

.commerce-card a,
.link-card a,
.finder-panel a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.note-box {
  padding: 18px 20px;
  border: 1px solid rgba(197, 155, 59, 0.36);
  border-radius: 8px;
  background: #fff8df;
  color: #5e4a18;
}

@media (max-width: 980px) {
  .page-hero,
  .detail-layout,
  .commerce-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-panel div,
  .spec-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo {
    height: 440px;
  }

  .trust-strip,
  .product-grid,
  .seed-wall,
  .hero-dock,
  .site-entry-grid,
  .bundle-grid,
  .scene-grid,
  .scene-story-grid,
  .system-grid,
  .supply-columns,
  .case-grid,
  .support-grid,
  .support-actions,
  .consumable-grid,
  .seed-intro,
  .seed-categories,
  .data-panel,
  .repurchase-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-feature {
    grid-row: auto;
  }

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

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-button {
    display: block;
  }
}

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

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 520px;
    padding-inline: 0;
  }

  .hero-photo {
    height: 330px;
    min-height: 330px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 10px;
  }

  .hero-stats,
  .hero-dock,
  .site-entry-grid,
  .trust-strip,
  .product-grid,
  .seed-wall,
  .bundle-grid,
  .scene-grid,
  .scene-story-grid,
  .scene-story,
  .system-grid,
  .supply-columns,
  .case-grid,
  .support-grid,
  .support-actions,
  .consumable-grid,
  .seed-intro,
  .seed-categories,
  .data-panel,
  .data-metrics,
  .seed-card dl,
  .seed-package-list,
  .repurchase-flow,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .card-image,
  .scene-image,
  .seed-image {
    height: 170px;
  }

  .scene-story:nth-child(even) .scene-art {
    order: 0;
  }

  .repurchase-flow li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    width: 2px;
    height: 22px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
  }
}

/* Pinterest-inspired exploration front page */
.pin-page {
  background: #ffffff;
}

.pin-header {
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.pin-header .brand {
  min-width: 230px;
}

.pin-search {
  flex: 1 1 420px;
}

.pin-search input {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8e2;
  border-radius: 999px;
  padding: 0 20px;
  background: #f1f5f2;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.pin-search input:focus {
  border-color: rgba(31, 122, 77, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.11);
}

.pin-nav {
  flex: 0 0 auto;
}

.pin-main {
  padding: 26px clamp(14px, 3vw, 36px) 70px;
}

.pin-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto 18px;
}

.pin-intro h1 {
  max-width: 920px;
  margin: 8px 0 10px;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.05;
}

.pin-intro p {
  max-width: 760px;
  color: var(--muted);
}

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

.pin-category-rail {
  position: sticky;
  top: 78px;
  z-index: 50;
  display: flex;
  gap: 10px;
  max-width: 1480px;
  margin: 0 auto 24px;
  padding: 10px 0 12px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.pin-filter {
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: #eef4ef;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.pin-filter.active,
.pin-filter:hover {
  background: var(--ink);
  color: #ffffff;
}

.pin-feed {
  column-count: 5;
  column-gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
}

.pin-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(220, 229, 223, 0.86);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 39, 29, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 122, 77, 0.24);
  box-shadow: 0 22px 52px rgba(17, 39, 29, 0.14);
}

.pin-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: #edf4e9;
}

.pin-short img {
  height: 210px;
}

.pin-medium img {
  height: 290px;
}

.pin-tall img {
  height: 390px;
}

.pin-feature img {
  height: 430px;
}

.pin-save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(14, 81, 53, 0.94);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.pin-card:hover .pin-save {
  opacity: 1;
  transform: translateY(0);
}

.pin-card-body {
  padding: 16px;
}

.pin-card-body h2,
.pin-card-body h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.24;
}

.pin-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pin-card .tag {
  display: inline-flex;
  width: auto;
  margin: 0;
  border-radius: 999px;
  padding: 3px 9px;
  background: #edf5f0;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 900;
}

.pin-card.is-hidden {
  display: none;
}

.pin-empty {
  display: none;
  max-width: 1480px;
  margin: 34px auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7faf6;
  color: var(--muted);
  text-align: center;
}

.pin-empty.show {
  display: block;
}

.pin-quote {
  max-width: 1180px;
  margin: 56px auto 0;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(197, 155, 59, 0.22), transparent 34%),
    linear-gradient(135deg, #eef8f0, #ffffff);
}

@media (max-width: 1280px) {
  .pin-feed {
    column-count: 4;
  }
}

@media (max-width: 980px) {
  .pin-header {
    align-items: stretch;
  }

  .pin-search {
    order: 3;
    flex-basis: 100%;
  }

  .pin-intro {
    grid-template-columns: 1fr;
  }

  .pin-intro-actions {
    justify-content: flex-start;
  }

  .pin-feed {
    column-count: 3;
  }

  .pin-category-rail {
    top: 72px;
  }
}

@media (max-width: 720px) {
  .pin-main {
    padding-inline: 12px;
  }

  .pin-feed {
    column-count: 2;
    column-gap: 12px;
  }

  .pin-card {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .pin-short img,
  .pin-medium img,
  .pin-tall img,
  .pin-feature img {
    height: 210px;
  }

  .pin-card-body {
    padding: 12px;
  }

  .pin-card-body h2,
  .pin-card-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 460px) {
  .pin-feed {
    column-count: 1;
  }

  .pin-short img,
  .pin-medium img,
  .pin-tall img,
  .pin-feature img {
    height: 240px;
  }
}

/* Soft luxury storefront front page */
.luxe-page {
  --luxe-ink: #1f1b17;
  --luxe-muted: #6c6259;
  --luxe-cream: #f4eadf;
  --luxe-paper: #fbf6ef;
  --luxe-sand: #dec5ad;
  --luxe-clay: #b88964;
  --luxe-gold: #c8a96b;
  --luxe-green: #1d5c40;
  --luxe-line: rgba(77, 61, 47, 0.18);
  --luxe-shadow: 0 24px 70px rgba(37, 29, 22, 0.14);
  background: var(--luxe-paper);
  color: var(--luxe-ink);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
}

.luxe-page h1,
.luxe-page h2,
.luxe-page h3 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Times New Roman", serif;
  font-weight: 600;
}

.luxe-header {
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(244, 234, 223, 0.92);
  border-bottom: 1px solid var(--luxe-line);
  backdrop-filter: blur(18px);
}

.luxe-brand {
  min-width: 250px;
}

.luxe-brand .brand-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.16);
}

.luxe-brand strong {
  color: #17120d;
  font-size: 17px;
  letter-spacing: 0;
}

.luxe-brand small {
  color: var(--luxe-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.luxe-nav {
  flex: 1;
  justify-content: flex-end;
  gap: clamp(10px, 1.8vw, 28px);
  color: #3f372f;
  font-size: 13px;
  font-weight: 700;
}

.luxe-nav a {
  position: relative;
  padding: 10px 0;
}

.luxe-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.luxe-nav a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.luxe-nav .nav-cta {
  min-height: 40px;
  padding: 8px 18px !important;
  border-radius: 3px;
  background: #111111;
  color: #fff6ea;
  box-shadow: none;
}

.luxe-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 78px));
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #d9c7b6;
}

.luxe-hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(0.92);
}

.luxe-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(244, 234, 223, 0.48) 0 22%, transparent 23%),
    linear-gradient(90deg, rgba(66, 48, 34, 0.18), rgba(244, 234, 223, 0.66) 45%, rgba(44, 35, 27, 0.1)),
    linear-gradient(180deg, rgba(244, 234, 223, 0.28), rgba(123, 95, 69, 0.2));
}

.luxe-hero-content {
  width: min(760px, calc(100% - 40px));
  padding: clamp(46px, 8vw, 98px) 22px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 24px rgba(30, 24, 18, 0.35);
}

.luxe-kicker {
  margin: 0 0 12px;
  color: var(--luxe-clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.luxe-hero .luxe-kicker {
  color: #fff7ec;
}

.luxe-hero h1 {
  margin: 0 auto 18px;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.luxe-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2vw, 19px);
}

.luxe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.luxe-page .button {
  border-radius: 3px;
  letter-spacing: 0;
}

.luxe-page .button.primary {
  background: #111111;
  color: #fff7ec;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.22);
}

.luxe-page .button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.82);
  color: #1f1b17;
}

.luxe-hero-link {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(20px, 5vw, 58px);
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  color: #ffffff;
  text-align: right;
  text-shadow: 0 2px 18px rgba(30, 24, 18, 0.38);
}

.luxe-hero-link span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.luxe-hero-link strong {
  font-family: "Noto Serif TC", "Source Han Serif TC", serif;
  font-size: 21px;
  font-weight: 600;
}

.luxe-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--luxe-line);
  border-bottom: 1px solid var(--luxe-line);
  background: #efe0d0;
}

.luxe-strip a {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--luxe-line);
  color: #342b23;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.luxe-strip a:hover {
  background: #e3ccb5;
}

.luxe-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 74px);
}

.luxe-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.luxe-heading h2,
.luxe-story-copy h2,
.luxe-system-band h2,
.luxe-talk-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.12;
}

.luxe-heading p:not(.luxe-kicker),
.luxe-story-copy p,
.luxe-system-band p,
.luxe-talk-card p {
  color: var(--luxe-muted);
}

.luxe-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}

.luxe-service-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--luxe-line);
  border-radius: 999px 999px 0 0;
  -webkit-clip-path: inset(0 round 999px 999px 0 0);
  clip-path: inset(0 round 999px 999px 0 0);
  background: #e7d0b8;
  color: var(--luxe-ink);
  box-shadow: none;
  filter: drop-shadow(0 18px 32px rgba(65, 48, 35, 0.09));
  transition: transform 180ms ease, filter 180ms ease;
}

.luxe-service-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 26px 46px rgba(65, 48, 35, 0.16));
}

.luxe-service-card img {
  width: 100%;
  height: 255px;
  border-bottom: 1px solid var(--luxe-line);
  border-radius: 999px 999px 0 0;
  object-fit: cover;
  object-position: center;
  background: #f4eadf;
}

.luxe-service-card div {
  min-height: 190px;
  padding: 24px 24px 28px;
  text-align: center;
}

.luxe-service-card p {
  margin: 0 0 8px;
  color: #7f5f43;
  font-size: 12px;
  font-weight: 900;
}

.luxe-service-card h3 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.16;
}

.luxe-service-card span {
  color: #4d4036;
  font-size: 15px;
}

.luxe-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 8vw, 116px) clamp(18px, 7vw, 108px);
  background: #fffefa;
}

.luxe-story-copy {
  max-width: 580px;
  justify-self: center;
}

.luxe-scene-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.luxe-scene-links a {
  border: 1px solid var(--luxe-line);
  border-radius: 999px;
  padding: 7px 13px;
  color: #4b3d32;
  font-size: 13px;
  font-weight: 800;
}

.luxe-arch-photo {
  overflow: hidden;
  border: 1px solid var(--luxe-line);
  border-radius: 999px 999px 0 0;
  background: var(--luxe-cream);
  box-shadow: var(--luxe-shadow);
}

.luxe-arch-photo img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
  object-position: center;
}

.luxe-products {
  background: #e8d2ba;
}

.luxe-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  max-width: 1300px;
  margin: 0 auto;
}

.luxe-product-card {
  display: grid;
  gap: 12px;
  color: var(--luxe-ink);
}

.luxe-product-card img {
  width: 100%;
  height: 210px;
  border: 1px solid rgba(55, 44, 35, 0.32);
  object-fit: cover;
  object-position: center;
  background: #f4eadf;
}

.luxe-product-card h3 {
  margin: 0;
  font-size: 23px;
}

.luxe-product-card p {
  margin: 0;
  color: #5f5147;
  font-size: 14px;
}

.luxe-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #211c18;
  font-size: 12px;
  font-weight: 900;
}

.luxe-seed-wall {
  background: #f7eee6;
}

.luxe-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1030px;
  margin: 0 auto;
}

.luxe-mini-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid var(--luxe-line);
  padding: 16px 18px;
  background: #fffdfa;
  color: #2c241e;
  font-weight: 900;
}

.luxe-mini-grid span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 34%, #ffffff 0 14%, transparent 15%),
    linear-gradient(135deg, var(--luxe-green), var(--luxe-gold));
}

.luxe-mini-grid a:nth-child(2) span {
  background: linear-gradient(135deg, #7f4965, #d8a54f);
}

.luxe-mini-grid a:nth-child(3) span {
  background: linear-gradient(135deg, #b43745, #8fb86c);
}

.luxe-mini-grid a:nth-child(4) span {
  background: linear-gradient(135deg, #e0bb41, #4e8a53);
}

.luxe-mini-grid a:nth-child(5) span {
  background: linear-gradient(135deg, #c684a1, #d7c5ae);
}

.luxe-mini-grid a:nth-child(6) span {
  background: linear-gradient(135deg, #78a95c, #c8a96b);
}

.luxe-supply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.luxe-supply-actions .button.secondary {
  border-color: var(--luxe-line);
}

.luxe-system-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 102px) clamp(20px, 7vw, 118px);
  background: #17130f;
  color: #fff7ec;
}

.luxe-system-band .luxe-kicker,
.luxe-system-band p {
  color: #d5bd9b;
}

.luxe-system-links {
  display: grid;
  gap: 12px;
}

.luxe-system-links a {
  border: 1px solid rgba(255, 247, 236, 0.28);
  padding: 18px;
  color: #fff7ec;
  font-weight: 900;
}

.luxe-system-links a:hover {
  background: rgba(255, 247, 236, 0.08);
}

.luxe-talk {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 58px 20px;
  background: #f4eadf;
}

.luxe-talk-card {
  display: grid;
  width: min(620px, 100%);
  min-height: 330px;
  place-items: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 999px 999px 0 0;
  background: #e1c7ad;
  color: var(--luxe-ink);
  text-align: center;
}

.luxe-support {
  background: #fffefa;
}

.luxe-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid var(--luxe-line);
  background: var(--luxe-line);
}

.luxe-support-grid a {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 18px;
  background: #f8efe6;
  color: #2d241d;
  font-weight: 900;
  text-align: center;
}

.luxe-support-grid a:hover {
  background: #e3ccb5;
}

.luxe-quote {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 74px);
  background: #e8d2ba;
}

.luxe-quote .quote-form {
  max-width: 1080px;
  border: 1px solid var(--luxe-line);
  border-radius: 0;
  background: #fffefa;
  box-shadow: var(--luxe-shadow);
}

.luxe-quote input,
.luxe-quote select,
.luxe-quote textarea {
  border-radius: 2px;
  border-color: rgba(80, 64, 49, 0.22);
  background: #fffdfa;
}

.luxe-footer {
  align-items: start;
  border-top: 1px solid var(--luxe-line);
  background: #f4eadf;
  color: #2c241e;
}

.luxe-footer p {
  color: var(--luxe-muted);
}

.luxe-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 9px 22px;
}

.luxe-footer nav a {
  color: #2c241e;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .luxe-nav {
    gap: 12px;
    font-size: 12px;
  }

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

@media (max-width: 900px) {
  .luxe-header {
    flex-wrap: wrap;
  }

  .luxe-brand {
    min-width: 0;
  }

  .luxe-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .luxe-nav.open {
    display: flex;
  }

  .luxe-nav a {
    padding: 12px 4px;
    border-top: 1px solid var(--luxe-line);
  }

  .luxe-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .luxe-header .menu-button {
    display: block;
    margin-left: auto;
    border-color: var(--luxe-line);
    background: #fff7ec;
  }

  .luxe-strip,
  .luxe-service-grid,
  .luxe-story,
  .luxe-system-band,
  .luxe-mini-grid,
  .luxe-support-grid {
    grid-template-columns: 1fr;
  }

  .luxe-strip a {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--luxe-line);
  }

  .luxe-service-card img {
    height: 230px;
  }

  .luxe-story-copy {
    justify-self: start;
  }

  .luxe-hero-link {
    position: static;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(31, 27, 23, 0.18);
    text-align: center;
  }

  .luxe-hero {
    align-items: end;
  }
}

@media (max-width: 640px) {
  .luxe-hero {
    min-height: 620px;
  }

  .luxe-hero-content {
    width: 100%;
    padding: 58px 18px 30px;
  }

  .luxe-hero h1 {
    font-size: 40px;
  }

  .luxe-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .luxe-section,
  .luxe-quote {
    padding-inline: 16px;
  }

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

  .luxe-product-card img {
    height: 230px;
  }

  .luxe-footer nav {
    grid-template-columns: 1fr;
  }
}

/* Unified V3 inner page storefront styling */
body:not(.pin-page) {
  background:
    radial-gradient(circle at 92% 0%, rgba(200, 169, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, #fffefa 42%, #f4eadf 100%);
  color: #1f1b17;
}

body:not(.pin-page) .site-header {
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(244, 234, 223, 0.94);
  border-bottom: 1px solid rgba(77, 61, 47, 0.18);
  backdrop-filter: blur(18px);
}

body:not(.pin-page) .brand {
  min-width: 250px;
}

body:not(.pin-page) .brand-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.16);
}

body:not(.pin-page) .brand strong {
  color: #17120d;
  font-size: 17px;
}

body:not(.pin-page) .brand small {
  color: #6c6259;
  font-size: 11px;
  text-transform: uppercase;
}

body:not(.pin-page) .main-nav {
  flex: 1;
  justify-content: flex-end;
  gap: clamp(10px, 1.8vw, 28px);
  color: #3f372f;
  font-size: 13px;
  font-weight: 800;
}

body:not(.pin-page) .main-nav a {
  position: relative;
  padding: 10px 0;
}

body:not(.pin-page) .main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

body:not(.pin-page) .main-nav a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

body:not(.pin-page) .nav-cta {
  min-height: 40px;
  padding: 8px 18px !important;
  border-radius: 3px;
  background: #111111;
  color: #fff6ea;
  box-shadow: none;
}

body:not(.pin-page) .page-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 5vw, 78px);
  overflow: hidden;
  min-height: 620px;
  padding: clamp(70px, 8vw, 126px) clamp(20px, 7vw, 110px);
  background:
    radial-gradient(circle at 78% 24%, rgba(200, 169, 107, 0.24), transparent 32%),
    linear-gradient(135deg, #fffefa 0%, #f4eadf 48%, #e4cbb2 100%);
}

body:not(.pin-page) .page-hero::before {
  position: absolute;
  inset: 10% auto auto 48%;
  width: clamp(280px, 34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(222, 197, 173, 0.42);
  content: "";
}

body:not(.pin-page) .page-hero > div {
  position: relative;
  z-index: 1;
}

body:not(.pin-page) .breadcrumbs {
  color: #7f5f43;
  font-size: 13px;
  font-weight: 900;
}

body:not(.pin-page) .eyebrow {
  color: #b88964;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.pin-page) h1,
body:not(.pin-page) h2,
body:not(.pin-page) h3 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Times New Roman", serif;
  color: #1f1b17;
  font-weight: 600;
}

body:not(.pin-page) .page-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.08;
}

body:not(.pin-page) .page-hero p {
  max-width: 650px;
  color: #6c6259;
  font-size: 17px;
}

body:not(.pin-page) .button,
body:not(.pin-page) .commerce-card a,
body:not(.pin-page) .link-card a,
body:not(.pin-page) .finder-panel a {
  border-radius: 3px;
}

body:not(.pin-page) .button.primary,
body:not(.pin-page) .commerce-card a,
body:not(.pin-page) .link-card a,
body:not(.pin-page) .finder-panel a {
  background: #111111;
  color: #fff7ec;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

body:not(.pin-page) .button.secondary {
  border-color: rgba(77, 61, 47, 0.22);
  background: rgba(255, 253, 250, 0.86);
  color: #1f1b17;
}

body:not(.pin-page) .page-visual,
body:not(.pin-page) .detail-visual {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(77, 61, 47, 0.18);
  border-radius: 999px 999px 0 0;
  background: #e7d0b8;
  box-shadow: none;
  filter: drop-shadow(0 24px 48px rgba(65, 48, 35, 0.16));
}

body:not(.pin-page) .page-visual::before,
body:not(.pin-page) .page-visual::after,
body:not(.pin-page) .detail-visual::before,
body:not(.pin-page) .detail-visual::after {
  display: none;
}

body:not(.pin-page) .asset-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 999px 999px 0 0;
  object-fit: cover;
  object-position: center;
}

body:not(.pin-page) .section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 74px);
}

body:not(.pin-page) .soft-section {
  background: #fffefa;
}

body:not(.pin-page) .section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

body:not(.pin-page) .section-heading h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

body:not(.pin-page) .section-heading p {
  color: #6c6259;
}

body:not(.pin-page) .commerce-grid,
body:not(.pin-page) .link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

body:not(.pin-page) .commerce-card,
body:not(.pin-page) .link-card,
body:not(.pin-page) .info-panel,
body:not(.pin-page) .finder-panel,
body:not(.pin-page) .detail-panel {
  overflow: hidden;
  border: 1px solid rgba(77, 61, 47, 0.16);
  border-radius: 0;
  background: #fffdfa;
  box-shadow: 0 18px 48px rgba(65, 48, 35, 0.08);
}

body:not(.pin-page) .commerce-card {
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body:not(.pin-page) .commerce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(65, 48, 35, 0.14);
}

body:not(.pin-page) .commerce-card > :not(img) {
  margin-right: 22px;
  margin-left: 22px;
}

body:not(.pin-page) .commerce-card > :last-child {
  margin-bottom: 22px;
}

body:not(.pin-page) .card-image,
body:not(.pin-page) .scene-image,
body:not(.pin-page) .seed-image {
  width: 100%;
  height: clamp(210px, 22vw, 310px);
  margin: 0 0 20px;
  border-radius: 999px 999px 0 0;
  object-fit: cover;
  object-position: center;
  background: #e7d0b8;
}

body:not(.pin-page) .commerce-card h3,
body:not(.pin-page) .link-card h3 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
}

body:not(.pin-page) .commerce-card p,
body:not(.pin-page) .link-card p,
body:not(.pin-page) .info-panel p,
body:not(.pin-page) .finder-panel p {
  color: #6c6259;
}

body:not(.pin-page) .commerce-card .tag,
body:not(.pin-page) .tag {
  display: inline-flex;
  width: auto;
  border-radius: 999px;
  padding: 4px 10px;
  background: #f4eadf;
  color: #7f5f43;
  font-size: 12px;
  font-weight: 900;
}

body:not(.pin-page) .detail-layout {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 5vw, 64px);
}

body:not(.pin-page) .detail-panel {
  padding: clamp(22px, 3vw, 34px);
  background: #17130f;
  color: #fff7ec;
}

body:not(.pin-page) .detail-panel h2,
body:not(.pin-page) .detail-panel dt {
  color: #fff7ec;
}

body:not(.pin-page) .detail-panel dd {
  color: #d5bd9b;
}

body:not(.pin-page) .detail-panel div,
body:not(.pin-page) .spec-list div {
  border-bottom-color: rgba(255, 247, 236, 0.18);
}

body:not(.pin-page) .note-box {
  border: 1px solid rgba(77, 61, 47, 0.16);
  border-radius: 0;
  background: #f4eadf;
  color: #6c6259;
}

body:not(.pin-page) .site-footer {
  border-top: 1px solid rgba(77, 61, 47, 0.18);
  background: #f4eadf;
  color: #2c241e;
}

body:not(.pin-page) .site-footer p {
  color: #6c6259;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  max-width: 1180px;
  margin: 0 auto;
}

.finder-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(77, 61, 47, 0.18);
  background: linear-gradient(180deg, #fffefa 0%, #ead5bd 100%);
  box-shadow: 0 24px 60px rgba(31, 26, 20, 0.08);
}

.finder-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #111;
  color: #c8a96b;
  font-weight: 800;
}

.finder-card h3,
.finder-card p {
  margin-top: 0;
}

.finder-card a,
.compare-table a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.7);
  text-underline-offset: 4px;
}

.product-compare {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.92), rgba(244, 234, 223, 0.92)),
    radial-gradient(circle at 18% 15%, rgba(200, 169, 107, 0.22), transparent 34%);
}

.compare-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(77, 61, 47, 0.18);
  background: #fffefa;
  box-shadow: 0 24px 70px rgba(31, 26, 20, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #2c241e;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(77, 61, 47, 0.14);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #111;
  color: #ead5bd;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

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

.compare-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.replenishment-flow {
  background: #111;
  color: #fffefa;
}

.replenishment-flow .luxe-heading h2,
.replenishment-flow .luxe-kicker {
  color: #fffefa;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-steps li {
  min-height: 170px;
  padding: 24px 20px;
  border: 1px solid rgba(200, 169, 107, 0.42);
  background: rgba(255, 254, 250, 0.08);
}

.flow-steps li::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: #c8a96b;
  font-weight: 900;
}

.flow-steps strong {
  display: block;
  margin-bottom: 8px;
  color: inherit;
}

.flow-steps span {
  color: rgba(255, 254, 250, 0.78);
}

body:not(.pin-page) .product-compare .flow-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.pin-page) .product-compare .flow-steps li {
  background: #fffefa;
  color: #2c241e;
}

body:not(.pin-page) .product-compare .flow-steps span {
  color: #6c6259;
}

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

.faq-list article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(77, 61, 47, 0.16);
  background: #fffefa;
  box-shadow: 0 18px 50px rgba(31, 26, 20, 0.07);
}

.faq-list h2 {
  margin-top: 0;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
}

.faq-list p {
  margin-bottom: 0;
  color: #6c6259;
}

@media (max-width: 1120px) {
  body:not(.pin-page) .main-nav {
    gap: 12px;
    font-size: 12px;
  }

  body:not(.pin-page) .commerce-grid,
  body:not(.pin-page) .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-grid,
  .flow-steps,
  body:not(.pin-page) .product-compare .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body:not(.pin-page) .site-header {
    flex-wrap: wrap;
  }

  body:not(.pin-page) .brand {
    min-width: 0;
  }

  body:not(.pin-page) .main-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  body:not(.pin-page) .main-nav.open {
    display: flex;
  }

  body:not(.pin-page) .main-nav a {
    padding: 12px 4px;
    border-top: 1px solid rgba(77, 61, 47, 0.18);
  }

  body:not(.pin-page) .menu-button {
    display: block;
    margin-left: auto;
    border-color: rgba(77, 61, 47, 0.18);
    background: #fff7ec;
  }

  body:not(.pin-page) .page-hero,
  body:not(.pin-page) .detail-layout {
    grid-template-columns: 1fr;
  }

  body:not(.pin-page) .page-hero {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body:not(.pin-page) .page-hero {
    padding: 46px 16px 58px;
  }

  body:not(.pin-page) .page-hero h1 {
    font-size: 40px;
  }

  body:not(.pin-page) .commerce-grid,
  body:not(.pin-page) .link-grid {
    grid-template-columns: 1fr;
  }

  .finder-grid,
  .flow-steps,
  body:not(.pin-page) .product-compare .flow-steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .flow-steps li,
  .finder-card {
    min-height: auto;
  }

  body:not(.pin-page) .page-visual,
  body:not(.pin-page) .detail-visual,
  body:not(.pin-page) .asset-image {
    min-height: 330px;
  }
}
