:root {
  color-scheme: light;
  --paper: #f4f2eb;
  --surface: #fff;
  --surface-soft: #e9eee9;
  --ink: #1b211e;
  --muted: #626a66;
  --line: #d7d8d0;
  --forest: #2e5b47;
  --forest-strong: #18392c;
  --jade: #4a7b64;
  --gold: #b8893f;
  --clay: #9b5a3d;
  --blue: #476f7d;
  --shadow: 0 20px 54px rgba(29, 39, 34, 0.1);
  --radius: 8px;
  --content: 1180px;
  --reading: 760px;
  --numeric-font: Arial, "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC",
    "Noto Sans CJK SC", sans-serif;
  --price-font: var(--numeric-font);
}

[data-theme="dark"] {
  color-scheme: dark;
  --paper: #141815;
  --surface: #1d221f;
  --surface-soft: #232d27;
  --ink: #f2f0e9;
  --muted: #b6bdb8;
  --line: #38413c;
  --forest: #5f9f7d;
  --forest-strong: #84bea0;
  --jade: #76a88e;
  --gold: #d8ad63;
  --clay: #cf8663;
  --blue: #78a6b4;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC",
    system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

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

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

figure {
  margin: 0;
}

h1,
h2,
h3,
p,
li,
dd {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Noto Serif SC", "STSong", "SimSun", serif;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 36px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--forest-strong);
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 22px;
  font-weight: 800;
}

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

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.site-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav .nav-link:hover::after,
.nav-item.is-active > .nav-link::after {
  transform: scaleX(1);
}

.nav-item-dropdown > .nav-link {
  gap: 6px;
}

.nav-item-dropdown > .nav-link::before {
  width: 5px;
  height: 5px;
  margin-top: 2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  content: "";
  order: 2;
  transform: rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  display: grid;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown::before {
  position: absolute;
  top: -11px;
  right: 0;
  left: 0;
  height: 11px;
  content: "";
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--surface-soft);
  color: var(--forest-strong);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--forest);
  color: var(--forest-strong);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  align-content: center;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  min-height: 68vh;
}

body.layout-products .site-main {
  min-height: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button.primary {
  background: var(--forest);
  color: #fff;
}

.button.primary:hover {
  background: var(--forest-strong);
}

.button.secondary,
.button.outline {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover,
.button.outline:hover {
  border-color: var(--forest);
  color: var(--forest-strong);
}

.button.light {
  background: #fff;
  color: #17352a;
}

.button.light:hover {
  background: #ecefe9;
}

.text-link,
.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-strong);
  font-weight: 800;
}

.text-link span,
.card-action span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
a:hover .card-action span {
  transform: translateX(4px);
}

.home-page {
  padding-bottom: 88px;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 72vh, 680px);
  overflow: hidden;
  color: #fff;
  background: #18281f;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 25, 19, 0.9) 0%,
      rgba(19, 43, 32, 0.7) 43%,
      rgba(16, 26, 21, 0.16) 76%
    ),
    linear-gradient(0deg, rgba(10, 18, 14, 0.42), transparent 40%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 64px;
}

.home-hero-copy {
  max-width: 700px;
}

.home-hero-copy h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
}

.home-hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.home-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: #fff;
}

.home-hero .button.secondary:hover {
  border-color: #fff;
  color: #fff;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-notes li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.home-pathways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.home-pathways > a {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 168px;
  padding: 28px 22px;
  border-left: 1px solid var(--line);
  transition: background 0.2s ease;
}

.home-pathways > a:hover {
  background: var(--surface-soft);
}

.pathway-number {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 13px;
}

.pathway-copy small,
.pathway-copy strong,
.pathway-copy em {
  display: block;
}

.pathway-copy small {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.pathway-copy strong {
  margin-bottom: 8px;
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 20px;
}

.pathway-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

.pathway-arrow {
  align-self: end;
  color: var(--forest-strong);
}

.section-block,
.section-contained,
.origin-feature,
.brewing-overview,
.consult-band,
.page-hero,
.content-page,
.article-page,
.product-page,
.contact-layout,
.search-page,
.taxonomy-intro,
.aroma-detail-grid,
.origin-editorial,
.brewing-guide {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.section-block {
  padding-top: 84px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2,
.origin-feature h2,
.brewing-overview h2,
.consult-band h2,
.page-hero h1,
.article-hero h1,
.product-hero h1 {
  margin: 0;
  line-height: 1.25;
}

.section-heading h2,
.origin-feature h2,
.brewing-overview h2,
.consult-band h2 {
  font-size: 38px;
}

.section-heading h2 {
  line-height: 1.34;
}

.section-heading p:not(.eyebrow),
.origin-feature-copy > p:not(.eyebrow),
.brewing-overview header > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.product-card,
.post-card,
.reference-grid article,
.contact-cards article,
.product-sidebar section,
.aroma-detail,
.origin-record-grid article,
.adjustment-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card,
.post-card {
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover,
.post-card:hover {
  border-color: color-mix(in srgb, var(--forest) 55%, var(--line));
  box-shadow: 0 14px 34px rgba(27, 39, 32, 0.08);
  transform: translateY(-3px);
}

.product-card-link,
.post-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.product-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body,
.post-card > a > div {
  display: flex;
  min-height: 220px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card-tags,
.home-price-tags,
.home-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card-tags span,
.home-price-tags span,
.home-price-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-card-tags span:first-child,
.home-price-tags span:first-child {
  border-color: color-mix(in srgb, var(--forest) 34%, var(--line));
  color: var(--forest-strong);
}

.product-card-tags span.is-stock {
  border-color: color-mix(in srgb, #2f7a50 42%, var(--line));
  background: color-mix(in srgb, #dcefe2 70%, var(--surface));
  color: #245f3e;
}

.product-card-tags span.is-mock {
  border-color: color-mix(in srgb, var(--gold) 38%, var(--line));
  background: color-mix(in srgb, var(--gold) 10%, var(--surface));
  color: color-mix(in srgb, var(--clay) 76%, var(--text));
}

.tag {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.product-card h3,
.post-card h3,
.reference-grid h3,
.contact-cards h2,
.product-sidebar h2,
.origin-record-grid h3,
.adjustment-grid h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.35;
}

.product-card p:not(.tag),
.post-card p:not(.tag),
.reference-grid p,
.contact-cards p,
.product-sidebar dd,
.origin-record-grid p,
.adjustment-grid p,
.consult-band p {
  color: var(--muted);
  line-height: 1.75;
}

.product-card-specs {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

dl {
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 11px;
}

dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.product-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: auto;
  padding-top: 20px;
}

.product-card-price strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--clay);
  font-family: var(--price-font);
  font-size: 26px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.product-card-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-action {
  margin-top: 16px;
  padding-top: 0;
  font-size: 13px;
}

.home-aroma-band,
.process-section {
  margin-top: 92px;
  padding: 78px 0 84px;
  background: var(--forest-strong);
  color: #fff;
}

.home-band-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading-light h2,
.section-heading-light .text-link {
  color: #fff;
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.aroma-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.aroma-preview {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: background 0.2s ease;
}

.aroma-preview:hover {
  background: rgba(255, 255, 255, 0.07);
}

.aroma-index {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--numeric-font);
}

.aroma-preview h3 {
  margin: 0 0 14px;
  font-size: 30px;
}

.aroma-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.aroma-tags {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.origin-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding-top: 92px;
}

.origin-feature figure {
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
}

.origin-feature figure img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.origin-feature h2 {
  font-size: 42px;
}

.process-inline {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-inline li {
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.process-inline span {
  color: var(--gold);
  font-family: var(--numeric-font);
}

.brewing-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
  margin-top: 92px;
  padding: 54px;
  border-top: 4px solid var(--clay);
  background: var(--surface);
}

.brewing-overview h2 {
  font-size: 36px;
}

.brewing-overview .text-link {
  margin-top: 26px;
}

.brewing-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brewing-quick-grid > div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brewing-quick-grid dd {
  font-family: var(--numeric-font);
  font-size: 21px;
  font-variant-numeric: tabular-nums;
}

.brewing-quick-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.consult-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 92px;
  padding: 44px 48px;
  border-radius: var(--radius);
  background: var(--forest-strong);
  color: #fff;
}

.consult-band > div {
  max-width: 780px;
}

.consult-band h2 {
  font-size: 36px;
}

.consult-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 76px 0 42px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: 52px;
}

.page-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.content-page,
.article-page,
.product-page {
  padding-bottom: 88px;
}

.prose {
  width: min(var(--reading), 100%);
  margin: 42px auto 0;
  font-size: 16px;
  line-height: 1.95;
}

.prose h2 {
  margin: 46px 0 14px;
  font-size: 28px;
}

.prose h3 {
  margin-top: 34px;
  font-size: 22px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--forest-strong);
  font-weight: 800;
}

.prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
}

.catalog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-note p {
  margin: 0;
}

.catalog-note strong {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.taxonomy-intro {
  padding: 10px 0 24px;
}

.taxonomy-intro .prose {
  margin-left: 0;
}

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

.aroma-detail {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
}

.aroma-detail .aroma-index {
  margin-bottom: 54px;
}

.aroma-detail h2 {
  margin: 0 0 16px;
  font-size: 34px;
}

.aroma-detail > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.aroma-commerce-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 22px;
  align-items: stretch;
  width: min(var(--content), calc(100% - 48px));
  margin: 30px auto 0;
}

.aroma-commerce-copy,
.aroma-commerce-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.aroma-commerce-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--forest) 9%, transparent), transparent 52%),
    var(--surface);
}

.aroma-commerce-copy h1 {
  max-width: 380px;
  margin: 0 0 14px;
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: 1.04;
}

.aroma-commerce-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.aroma-commerce-copy .hero-actions {
  margin-top: auto;
  padding-top: 26px;
}

.aroma-commerce-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.aroma-commerce-stats > div {
  padding: 13px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aroma-commerce-stats dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 26px;
}

.aroma-commerce-panel {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  padding: 16px;
  box-shadow: var(--shadow);
}

.aroma-commerce-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 2px 14px;
}

.aroma-commerce-panel-head h2 {
  margin: 0;
  font-size: 28px;
}

.aroma-commerce-panel-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.aroma-commerce-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.aroma-commerce-tile {
  display: grid;
  min-width: 0;
  min-height: 126px;
  align-content: space-between;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface-soft) 54%, var(--surface));
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.aroma-commerce-tile.has-product {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--gold) 9%, transparent), transparent 55%),
    var(--surface);
}

.aroma-commerce-tile.has-product:hover {
  border-color: color-mix(in srgb, var(--forest) 56%, var(--line));
  box-shadow: 0 12px 26px rgba(27, 39, 32, 0.08);
  transform: translateY(-2px);
}

.aroma-commerce-tile.is-disabled {
  border-style: dashed;
  background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
  color: color-mix(in srgb, var(--muted) 62%, transparent);
}

.aroma-commerce-tile span,
.aroma-commerce-tile small,
.aroma-commerce-tile strong,
.aroma-commerce-tile em {
  display: block;
  min-width: 0;
}

.aroma-commerce-tile span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
  font-weight: 800;
}

.aroma-commerce-tile strong {
  color: var(--forest-strong);
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 22px;
  line-height: 1.18;
}

.aroma-commerce-tile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.aroma-commerce-tile em {
  color: var(--clay);
  font-family: var(--numeric-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.aroma-commerce-tile.is-disabled strong,
.aroma-commerce-tile.is-disabled em,
.aroma-commerce-tile.is-disabled small,
.aroma-commerce-tile.is-disabled span {
  color: inherit;
}

.aroma-stock-section {
  padding-top: 42px;
}

.aroma-product-section {
  padding-top: 58px;
}

.aroma-stock-section .section-heading,
.aroma-product-section .section-heading {
  margin-bottom: 18px;
}

.aroma-stock-section .product-index-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.aroma-product-section .product-card-body {
  min-height: 198px;
}

.aroma-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: stretch;
  width: min(var(--content), calc(100% - 48px));
  margin: 42px auto 0;
}

.aroma-hero-copy {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 0 20px;
  border-bottom: 1px solid var(--line);
}

.aroma-hero-copy::after {
  position: absolute;
  right: 10px;
  bottom: 120px;
  width: 88px;
  height: 88px;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, color-mix(in srgb, var(--gold) 28%, transparent) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, color-mix(in srgb, var(--gold) 28%, transparent) 50%, transparent 51%);
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.aroma-hero-copy h1 {
  max-width: 360px;
  margin: 0 0 18px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 1.02;
}

.aroma-hero-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.aroma-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  background: color-mix(in srgb, var(--surface) 58%, transparent);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.aroma-hero-stats > div {
  padding: 15px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aroma-hero-stats dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 28px;
}

.aroma-hero-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 520px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--forest) 12%, transparent), transparent 28%),
    linear-gradient(315deg, color-mix(in srgb, var(--gold) 13%, transparent), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.aroma-hero-board::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--line) 38%, transparent) 1px, transparent 1px),
    linear-gradient(0deg, color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.aroma-hero-tile {
  --tile-tone: var(--forest);
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 16px;
  border: 1px solid color-mix(in srgb, var(--tile-tone) 24%, var(--line));
  border-radius: 7px;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--tile-tone) 15%, transparent), transparent 50%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, var(--paper)), var(--surface) 68%),
    var(--surface);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 72%, transparent);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.aroma-hero-tile:nth-child(1) {
  --tile-tone: #b8893f;
}

.aroma-hero-tile:nth-child(2) {
  --tile-tone: #d0a64b;
}

.aroma-hero-tile:nth-child(3) {
  --tile-tone: #6f8f6c;
}

.aroma-hero-tile:nth-child(4) {
  --tile-tone: #c58c54;
}

.aroma-hero-tile:nth-child(5) {
  --tile-tone: #9b5a3d;
}

.aroma-hero-tile:nth-child(6) {
  --tile-tone: #4a7b64;
}

.aroma-hero-tile:nth-child(7) {
  --tile-tone: #476f7d;
}

.aroma-hero-tile:nth-child(8) {
  --tile-tone: #7c5d45;
}

.aroma-hero-tile:nth-child(9) {
  --tile-tone: #8a9a5b;
}

.aroma-hero-tile:nth-child(10) {
  --tile-tone: #c1a05f;
}

.aroma-hero-tile::before {
  position: absolute;
  top: 12px;
  right: 16px;
  left: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--tile-tone), transparent);
  content: "";
}

.aroma-hero-tile::after {
  position: absolute;
  inset: auto 8px 2px auto;
  color: color-mix(in srgb, var(--tile-tone) 18%, transparent);
  content: attr(data-mark);
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 78px;
  line-height: 1;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.aroma-hero-tile:hover {
  z-index: 1;
  border-color: color-mix(in srgb, var(--tile-tone) 72%, var(--forest-strong));
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--tile-tone) 30%, var(--forest-strong)), var(--forest-strong) 62%),
    var(--forest-strong);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--tile-tone) 22%, transparent);
  color: #fff;
  transform: translateY(-4px);
}

.aroma-hero-tile:hover::after {
  color: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
}

.aroma-hero-tile.has-product {
  box-shadow:
    inset 0 3px 0 var(--gold),
    inset 0 1px 0 color-mix(in srgb, #fff 72%, transparent);
}

.aroma-hero-tile.has-product:hover {
  box-shadow:
    inset 0 3px 0 var(--gold),
    0 18px 34px color-mix(in srgb, var(--tile-tone) 22%, transparent);
}

.aroma-hero-tile span,
.aroma-hero-tile strong,
.aroma-hero-tile small,
.aroma-hero-tile em {
  position: relative;
  z-index: 1;
  display: block;
}

.aroma-hero-tile span {
  margin-top: 10px;
  color: var(--tile-tone);
  font-family: var(--numeric-font);
  font-size: 13px;
  font-weight: 800;
}

.aroma-hero-tile strong {
  margin-top: auto;
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 29px;
  line-height: 1.16;
}

.aroma-hero-tile small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.aroma-hero-tile em {
  margin-top: 10px;
  color: var(--clay);
  font-family: var(--numeric-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.aroma-hero-tile:hover small {
  color: rgba(255, 255, 255, 0.68);
}

.aroma-hero-tile:hover span,
.aroma-hero-tile:hover em {
  color: rgba(255, 255, 255, 0.78);
}

.aroma-reading-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
  width: min(var(--content), calc(100% - 48px));
  margin: 74px auto 0;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.aroma-reading-copy {
  width: min(var(--reading), 100%);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.aroma-reading-copy h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 28px;
}

.aroma-reading-copy p,
.aroma-reading-copy li {
  color: var(--muted);
}

.aroma-reading-aside {
  position: sticky;
  top: 96px;
  padding: 26px;
  border-top: 4px solid var(--gold);
  background: var(--surface);
}

.aroma-reading-aside h2 {
  margin: 0;
  font-size: 26px;
}

.aroma-reading-aside p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.aroma-reading-aside .text-link {
  margin-top: 22px;
  font-size: 13px;
}

.aroma-detail-section {
  padding-top: 78px;
}

.aroma-detail-section .aroma-detail-grid {
  width: 100%;
  margin: 0;
}

.aroma-product-mini {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.aroma-product-mini:hover {
  border-color: color-mix(in srgb, var(--forest) 48%, var(--line));
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.aroma-product-mini img {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
}

.aroma-product-mini span,
.aroma-product-mini small,
.aroma-product-mini strong,
.aroma-product-mini em,
.aroma-product-mini b {
  display: block;
  min-width: 0;
}

.aroma-product-mini small,
.aroma-product-mini em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.aroma-product-mini strong {
  margin: 4px 0;
  font-size: 15px;
}

.aroma-product-mini b {
  color: var(--clay);
  font-family: var(--numeric-font);
  font-size: 20px;
  white-space: nowrap;
}

.other-aroma-section {
  padding-top: 74px;
}

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

.other-aroma-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.other-aroma-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.other-aroma-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.other-aroma-card .text-link {
  margin-top: 22px;
  font-size: 13px;
}

.origin-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
  padding-top: 54px;
}

.origin-editorial figure {
  overflow: hidden;
  border-radius: var(--radius);
}

.origin-editorial figure img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.origin-editorial .prose {
  margin: 0;
}

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

.origin-record-grid article {
  min-height: 210px;
  padding: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.process-grid li {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.process-grid li > span {
  color: var(--gold);
  font-family: var(--numeric-font);
}

.process-grid h3 {
  margin: 42px 0 12px;
  color: #fff;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.brewing-guide {
  padding: 54px 0 88px;
}

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

.brewing-guide > .prose {
  margin-left: 0;
}

.brewing-steps {
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.brewing-steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.brewing-steps li > span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 18px;
}

.brewing-steps h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.brewing-steps p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.adjustment-section {
  padding-top: 70px;
}

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

.adjustment-grid article {
  min-height: 190px;
  padding: 24px;
  border-top: 3px solid var(--clay);
}

.article-hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 52px;
  align-items: center;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.article-hero img,
.product-hero figure,
.product-hero img {
  width: 100%;
}

.article-hero img,
.product-hero img {
  min-height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

.article-hero h1,
.product-hero h1 {
  margin-bottom: 18px;
  font-size: 48px;
}

.article-hero p:not(.eyebrow),
.product-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.article-content {
  margin-top: 52px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--reading), 100%);
  margin: 58px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 30px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-hero-offer {
  display: inline-grid;
  gap: 6px;
  min-width: 260px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, var(--line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--surface-soft) 68%, transparent);
}

.product-hero-offer span,
.product-hero-offer small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-hero-offer strong {
  color: var(--clay);
  font-family: var(--price-font);
  font-size: 36px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-breadcrumb a {
  color: inherit;
}

.product-breadcrumb b {
  color: var(--forest-strong);
  font-weight: 900;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts dl {
  min-height: 74px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.product-commerce-hero {
  display: grid;
  grid-template-columns: minmax(400px, 500px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 10px 0 24px;
}

.product-media-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "main"
    "thumbs"
    "note";
  gap: 10px;
  align-items: start;
}

.product-main-media {
  grid-area: main;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-main-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #fff;
  object-fit: contain;
}

.product-thumb-strip {
  display: grid;
  grid-area: thumbs;
  grid-template-columns: repeat(6, minmax(58px, 1fr));
  gap: 8px;
}

.product-thumb-strip button {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.product-thumb-strip img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  object-fit: cover;
}

.product-thumb-strip button.is-active,
.product-thumb-strip button:hover {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.product-buy-panel {
  overflow: hidden;
  padding: 16px 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(27, 39, 32, 0.05);
}

.product-buy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.product-buy-tags span,
.product-service-line span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-buy-tags span:first-child {
  border-color: color-mix(in srgb, var(--forest) 36%, var(--line));
  color: var(--forest-strong);
}

.product-buy-panel h1 {
  margin: 0 0 4px;
  font-size: 30px;
  line-height: 1.24;
}

.product-buy-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-price-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 1fr);
  gap: 12px;
  margin: 10px -20px 10px;
  padding: 10px 20px;
  border: 1px solid color-mix(in srgb, var(--gold) 36%, var(--line));
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: color-mix(in srgb, #fff3df 64%, var(--surface));
}

.product-price-box dl {
  display: flex;
  align-items: baseline;
  min-width: 0;
  gap: 12px;
}

.product-price-box dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product-price-box dd {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-price-box strong {
  display: block;
  color: var(--clay);
  font-family: var(--price-font);
  font-size: 36px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1.14;
  white-space: nowrap;
}

.product-price-box dl:last-child {
  justify-content: flex-end;
  text-align: right;
}

.product-shop-rows {
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
}

.product-shop-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.product-shop-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-shop-row p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.product-sku-picker {
  display: grid;
  gap: 5px;
  padding: 0 0 7px;
}

.product-sku-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.product-sku-label {
  padding-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-sku-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-sku-row button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--numeric-font);
  font-size: 12px;
  font-weight: 800;
}

.product-sku-row button:hover:not(:disabled),
.product-sku-row button.is-active {
  border-color: var(--forest);
  color: var(--forest-strong);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.product-sku-row button:disabled {
  background: color-mix(in srgb, var(--line) 32%, var(--surface));
  color: color-mix(in srgb, var(--muted) 58%, transparent);
  cursor: not-allowed;
}

.product-selected-sku {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  min-height: 34px;
  margin: 0 0 8px 81px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in srgb, var(--paper) 68%, var(--surface));
}

.product-selected-sku > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-selected-sku strong {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 13px;
}

.product-selected-sku small {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-left: auto;
  color: var(--muted);
  font-family: var(--numeric-font);
  font-size: 12px;
  font-weight: 800;
}

.product-selected-sku small span + span::before {
  margin-right: 8px;
  color: color-mix(in srgb, var(--muted) 45%, transparent);
  content: "/";
}

.product-custom-weight-row {
  display: grid;
  grid-template-columns: 52px auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 0 0 8px;
}

.product-custom-weight-row[hidden] {
  display: none;
}

.product-custom-weight-row label {
  display: inline-grid;
  grid-template-columns: 90px 28px;
  align-items: center;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
}

.product-custom-weight-row input {
  width: 90px;
  height: 32px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--numeric-font);
  font-weight: 900;
  text-align: center;
}

.product-custom-weight-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.product-custom-weight-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
}

.product-anchor-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 170px));
  gap: 10px;
  margin-top: 0;
}

.product-anchor-actions .button {
  justify-content: center;
  min-height: 42px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: start;
}

.product-layout .prose {
  margin-left: 0;
}

.product-sidebar {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.product-sidebar section {
  padding: 24px;
}

.product-sidebar dl {
  display: grid;
  gap: 16px;
}

.product-detail-shell {
  width: 100%;
  margin: 18px 0 0;
}

.product-detail-tabbar {
  position: sticky;
  top: 76px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 8px 22px rgba(27, 39, 32, 0.05);
}

.product-detail-tabbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.product-detail-tabbar a:first-child {
  background: var(--forest-strong);
  color: #fff;
}

.product-detail-card {
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-detail-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.product-description-card .prose {
  width: min(var(--reading), 100%);
  margin-left: 0;
}

.product-page {
  width: min(1240px, calc(100% - 48px));
}

.product-commerce-hero {
  grid-template-columns: minmax(470px, 548px) minmax(0, 1fr);
  gap: 24px;
  padding: 14px 0 24px;
}

.product-main-media {
  border-radius: 4px;
  background: #fff;
}

.product-main-media img {
  aspect-ratio: 1 / 1;
}

.product-media-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-area: note;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-media-note span:first-child {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-weight: 900;
}

.product-buy-panel {
  padding: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(27, 39, 32, 0.07);
}

.product-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 34%, #fff);
}

.product-store-row span {
  color: var(--forest-strong);
  font-size: 13px;
  font-weight: 900;
}

.product-store-row b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-showcase-head {
  display: grid;
  gap: 10px;
  padding: 16px 24px 14px;
}

.product-title-block {
  display: grid;
  gap: 8px;
}

.product-title-block h1 {
  margin: 0;
  font-family:
    "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC",
    system-ui, sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.22;
}

.product-title-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.product-title-block .product-buy-tags {
  margin: 2px 0 0;
}

.product-price-box {
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr);
  gap: 24px;
  margin: 0;
  padding: 14px 24px;
  border-top: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  background:
    linear-gradient(90deg, #fff2dc 0%, #fff8ed 62%, #fffaf2 100%);
}

.product-price-main,
.product-price-note {
  display: grid;
  align-content: center;
  min-width: 0;
}

.product-price-main span,
.product-price-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-price-main strong {
  display: block;
  margin-top: 6px;
  color: var(--clay);
  font-family: var(--price-font);
  font-size: 42px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.product-price-note {
  justify-items: end;
  text-align: right;
}

.product-price-note b {
  margin-top: 4px;
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 14px;
  line-height: 1.35;
}

.product-commerce-rows {
  display: grid;
  gap: 0;
  margin: 14px 24px 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
}

.product-commerce-rows dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 36px;
  padding: 6px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.product-commerce-rows dl:last-child {
  border-bottom: 0;
}

.product-commerce-rows dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.product-commerce-rows dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.product-commerce-rows dd span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--surface-soft) 34%, #fff);
  color: var(--forest-strong);
  font-size: 12px;
  font-weight: 900;
}

.product-panel-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 24px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-soft) 48%, var(--surface));
}

.product-panel-facts dl {
  display: grid;
  gap: 5px;
  min-height: 64px;
  padding: 10px 10px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.product-panel-facts dl:last-child {
  border-right: 0;
}

.product-panel-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.product-panel-facts dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.product-selection-card {
  display: grid;
  gap: 10px;
  margin: 12px 24px 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-panel-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
}

.product-panel-section-head span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.product-panel-section-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.product-sku-picker {
  gap: 7px;
  padding-bottom: 0;
}

.product-sku-row {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  min-height: 38px;
  align-items: start;
}

.product-sku-label {
  padding-top: 9px;
  font-size: 13px;
  font-weight: 900;
}

.product-sku-row button {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 5px;
  background: #fff;
  font-size: 13px;
}

.product-selected-sku {
  min-height: 38px;
  margin: 0;
  padding: 10px 12px;
  border-color: color-mix(in srgb, var(--gold) 32%, var(--line));
  border-radius: 5px;
  background: color-mix(in srgb, #fff9ef 72%, var(--surface));
}

.product-anchor-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 14px 24px 0;
}

.product-anchor-actions .button {
  min-height: 42px;
}

.product-safe-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 8px 24px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-safe-line span {
  position: relative;
  padding-left: 13px;
}

.product-safe-line span::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.product-detail-tabbar {
  overflow-x: auto;
  border-radius: 4px 4px 0 0;
}

.product-detail-tabbar a {
  min-width: 118px;
  min-height: 44px;
  font-size: 13px;
  white-space: nowrap;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 16px;
}

.product-detail-layout .product-detail-card {
  margin-top: 0;
}

.product-detail-card {
  border-radius: 4px;
  background: #fff;
}

.product-detail-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.product-detail-head h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.product-detail-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-detail-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-detail-matrix div {
  min-height: 62px;
  padding: 11px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-detail-matrix dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 13px;
  line-height: 1.45;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}

.product-detail-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.product-detail-gallery img {
  width: 100%;
  max-height: 760px;
  aspect-ratio: 16 / 10;
  background: #fff;
  object-fit: contain;
}

.product-detail-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.product-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-story-grid section {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in srgb, var(--surface-soft) 52%, #fff);
}

.product-story-grid h3 {
  margin: 0;
  color: var(--forest-strong);
  font-family:
    "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC",
    system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.35;
}

.product-story-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78;
}

.product-detail-side {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 12px;
}

.product-detail-side section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.product-detail-side h2 {
  margin: 0 0 10px;
  font-family:
    "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC",
    system-ui, sans-serif;
  font-size: 15px;
}

.product-detail-side p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-detail-side dl {
  display: grid;
  gap: 10px;
}

.product-detail-side dl > div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.product-detail-side dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-detail-side dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 13px;
  line-height: 1.45;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-service-grid dl {
  min-height: 112px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-service-grid dt {
  color: var(--gold);
  font-weight: 900;
}

.product-service-grid dd {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.75;
}

.product-param-grid,
.product-info-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

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

.product-param-grid dl,
.product-info-grid dl {
  display: grid;
  min-height: 70px;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-info-grid dl {
  align-items: start;
  grid-template-columns: 1fr;
}

.product-param-grid dd,
.product-info-grid dd {
  color: var(--ink);
  font-family: var(--numeric-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

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

.reference-grid article {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 42px 0 88px;
}

.contact-topic-card {
  padding: 32px;
  border-top: 4px solid var(--gold);
  background: var(--surface);
}

.topic-output {
  margin: 0 0 22px;
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 24px;
  font-weight: 800;
}

.copy-status {
  display: block;
  min-height: 22px;
  margin-top: 12px;
  color: var(--forest-strong);
  font-weight: 800;
}

.contact-topic-card .prose {
  margin-top: 22px;
}

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

.contact-cards article {
  min-height: 250px;
  padding: 28px;
}

.contact-wide-card {
  grid-column: 1 / -1;
  min-height: auto !important;
}

.wechat-qr {
  width: 170px;
  height: 170px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.contact-value {
  display: block;
  color: var(--forest-strong);
  font-size: 22px;
  font-weight: 900;
}

.contact-email {
  font-size: 18px;
}

.search-page {
  padding: 42px 0 88px;
}

.search-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.search-panel label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-input-row input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.search-input-row input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--forest) 16%, transparent);
}

.search-meta {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.search-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.search-results article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.search-results h2 {
  margin: 0 0 8px;
  font-size: 23px;
}

.search-results p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.not-found {
  min-height: 52vh;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0;
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.footer-brand {
  flex: 0 0 auto;
  gap: 10px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.footer-brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.footer-brand small {
  display: none;
}

.footer-inner p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-inner nav a:hover {
  color: var(--forest-strong);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 22px;
  }

  .site-nav {
    gap: 20px;
  }

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

  .home-pathways > a {
    min-height: 145px;
  }

  .origin-feature,
  .origin-editorial,
  .article-hero,
  .product-hero,
  .aroma-commerce-hero,
  .product-commerce-hero,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .origin-feature-copy {
    max-width: 760px;
  }

  .brewing-overview {
    grid-template-columns: 1fr;
  }

  .brewing-overview header {
    max-width: 760px;
  }

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

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

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

  .article-hero img,
  .product-hero img {
    max-height: 560px;
  }

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

  .product-buy-panel {
    padding: 20px;
  }

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

  .product-detail-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aroma-commerce-copy,
  .aroma-commerce-panel {
    min-height: 0;
  }

  .aroma-commerce-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .aroma-product-section .product-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    padding: 8px 0 12px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-item {
    display: grid;
    align-content: start;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
  }

  .site-nav .nav-link {
    padding: 12px;
    text-align: center;
  }

  .site-nav .nav-link::after,
  .nav-item-dropdown > .nav-link::before {
    display: none;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 8px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 8px 10px;
    text-align: center;
    white-space: normal;
  }

  .nav-toggle {
    display: grid;
  }

  .home-hero-copy h1 {
    font-size: 58px;
  }

  .card-grid,
  .post-list,
  .aroma-preview-grid,
  .aroma-detail-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aroma-preview-grid > a:last-child,
  .aroma-detail-grid > article:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 9px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .site-header.is-nav-open .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    min-height: calc(100svh - 106px);
    max-height: 660px;
  }

  .home-hero-shade {
    background:
      linear-gradient(
        0deg,
        rgba(10, 23, 17, 0.94) 0%,
        rgba(16, 38, 28, 0.62) 62%,
        rgba(10, 22, 16, 0.25)
      ),
      linear-gradient(90deg, rgba(12, 27, 20, 0.28), transparent);
  }

  .home-hero-inner {
    width: min(100% - 30px, 100%);
    padding: 54px 0 38px;
  }

  .home-hero-copy h1 {
    font-size: 46px;
  }

  .home-hero-lead {
    font-size: 16px;
  }

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

  .hero-notes {
    gap: 10px 18px;
    margin-top: 24px;
  }

  .section-block,
  .section-contained,
  .origin-feature,
  .brewing-overview,
  .consult-band,
  .page-hero,
  .content-page,
  .article-page,
  .product-page,
  .contact-layout,
  .search-page,
  .taxonomy-intro,
  .aroma-detail-grid,
  .origin-editorial,
  .brewing-guide,
  .home-pathways,
  .home-band-inner,
  .footer-inner {
    width: min(100% - 30px, 100%);
  }

  .home-pathways {
    grid-template-columns: 1fr;
  }

  .home-pathways > a {
    min-height: auto;
    padding: 22px 18px;
  }

  .section-block {
    padding-top: 68px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading h2,
  .origin-feature h2,
  .brewing-overview h2,
  .consult-band h2 {
    font-size: 30px;
  }

  .card-grid,
  .post-list,
  .aroma-preview-grid,
  .aroma-detail-grid,
  .origin-record-grid,
  .process-grid,
  .adjustment-grid,
  .reference-grid,
  .contact-cards,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .aroma-preview-grid > a:last-child,
  .aroma-detail-grid > article:last-child {
    grid-column: auto;
  }

  .product-card-body,
  .post-card > a > div {
    min-height: 0;
  }

  .home-aroma-band,
  .process-section {
    margin-top: 72px;
    padding: 62px 0 68px;
  }

  .aroma-preview,
  .aroma-detail {
    min-height: auto;
  }

  .aroma-index,
  .aroma-detail .aroma-index {
    margin-bottom: 30px;
  }

  .origin-feature {
    gap: 30px;
    padding-top: 72px;
  }

  .origin-feature figure,
  .origin-feature figure img,
  .origin-editorial figure img {
    min-height: 320px;
  }

  .brewing-overview {
    gap: 34px;
    margin-top: 72px;
    padding: 32px 22px;
  }

  .brewing-quick-grid,
  .brewing-quick-large {
    grid-template-columns: 1fr;
  }

  .consult-band {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 72px;
    padding: 32px 24px;
  }

  .page-hero {
    padding: 54px 0 32px;
  }

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

  .page-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .origin-editorial {
    gap: 30px;
    padding-top: 38px;
  }

  .process-grid li {
    min-height: auto;
  }

  .brewing-guide {
    padding-top: 38px;
  }

  .brewing-steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .article-hero,
  .product-hero {
    gap: 30px;
    padding: 42px 0;
  }

  .article-hero h1,
  .product-hero h1 {
    font-size: 36px;
  }

  .article-hero img,
  .product-hero img {
    min-height: 280px;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-layout {
    gap: 10px;
  }

  .product-price-box,
  .product-service-grid {
    grid-template-columns: 1fr;
  }

  .product-price-note {
    justify-items: start;
    text-align: left;
  }

  .product-media-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs"
      "note";
  }

  .product-thumb-strip {
    grid-template-columns: repeat(6, minmax(42px, 1fr));
  }

  .product-thumb-strip button {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

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

  .product-sku-row,
  .product-custom-weight-row {
    grid-template-columns: 1fr;
  }

  .product-selected-sku {
    margin-left: 0;
  }

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

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

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

  .product-selected-sku small {
    margin-left: 0;
  }

  .catalog-note,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    padding-top: 30px;
  }

  .contact-wide-card {
    grid-column: auto;
  }

  .contact-value,
  .contact-email {
    font-size: 16px;
  }

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

@media (max-width: 420px) {
  .brand strong {
    font-size: 15px;
  }

  .home-hero-copy h1 {
    font-size: 42px;
  }

  .product-card dl,
  .product-hero-meta,
  .product-facts {
    grid-template-columns: 1fr;
  }

  .product-sku-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-buy-panel h1 {
    font-size: 32px;
  }
}

/* Long-form homepage */
.home-page {
  padding-bottom: 104px;
}

.home-notice,
.home-opening,
.home-content-shell,
.home-principles {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.home-notice {
  padding: 8px 0;
}

.home-notice > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 12px;
}

.home-notice > div > span {
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--forest-strong);
  color: #fff;
  font-weight: 800;
}

.home-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-notice a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-strong);
  font-weight: 800;
}

.home-notice a span {
  transition: transform 0.2s ease;
}

.home-notice a:hover span {
  transform: translateX(3px);
}

.home-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(300px, 0.78fr);
  gap: 16px;
}

.home-opening .home-hero {
  min-height: clamp(430px, 46vh, 500px);
  border-radius: 12px;
}

.home-opening .home-hero-inner {
  width: 100%;
  align-items: center;
  padding: 34px 48px 44px;
}

.home-opening .home-hero-copy {
  max-width: 600px;
}

.home-opening .home-hero-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 4.8vw, 66px);
}

.home-opening .home-hero-lead {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.68;
}

.home-opening .hero-notes {
  margin-top: 22px;
}

.home-opening-aside {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.opening-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.opening-card:hover {
  border-color: color-mix(in srgb, var(--forest) 55%, var(--line));
  box-shadow: 0 16px 34px rgba(27, 39, 32, 0.11);
  transform: translateY(-3px);
}

.opening-card h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.opening-card p:not(.eyebrow) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.opening-card > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  font-size: 13px;
}

.opening-card > strong span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.opening-card:hover > strong span {
  transform: translateX(4px);
}

.opening-aroma-card {
  border-color: #254a39;
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 137, 63, 0.22), transparent 34%),
    var(--forest-strong);
  color: #fff;
}

.opening-aroma-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.opening-aroma-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.opening-aroma-card li {
  display: block;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.opening-aroma-card li span {
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 13px;
  font-weight: 800;
}

.opening-aroma-card li small {
  display: none;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
}

.opening-season-card {
  background:
    linear-gradient(145deg, transparent 0 66%, color-mix(in srgb, var(--gold) 13%, transparent) 66%),
    var(--surface);
}

.opening-season-card h2 {
  font-size: 25px;
}

.opening-season-card p:not(.eyebrow) {
  line-height: 1.5;
}

.opening-season-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.opening-season-card dl > div {
  padding: 9px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.opening-season-card dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 20px;
}

.home-opening + .home-pathways {
  overflow: hidden;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  border-radius: 12px;
}

.home-opening + .home-pathways > a {
  min-height: 118px;
  padding: 20px 20px;
}

.home-content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 28px;
  align-items: start;
  margin-top: 36px;
}

.home-feed {
  min-width: 0;
}

.home-feed .section-block,
.home-feed .origin-feature,
.home-feed .brewing-overview {
  width: 100%;
}

.home-feed .section-block {
  padding-top: 72px;
}

.home-feed .home-products-section {
  padding-top: 28px;
}

.home-feed .section-heading {
  align-items: flex-start;
}

.home-feed .section-heading > div {
  max-width: 640px;
}

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

.home-product-grid > .product-card:first-child,
.home-post-grid > .post-card:first-child {
  grid-column: 1 / -1;
}

.home-product-grid > .product-card:first-child .product-card-link,
.home-post-grid > .post-card:first-child > a {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.home-product-grid > .product-card:first-child img,
.home-post-grid > .post-card:first-child img {
  height: 100%;
  min-height: 410px;
  aspect-ratio: auto;
}

.home-product-grid > .product-card:first-child .product-card-body,
.home-post-grid > .post-card:first-child > a > div {
  min-height: 410px;
  padding: 34px;
}

.home-product-grid > .product-card:not(:first-child) .product-card-body,
.home-post-grid > .post-card:not(:first-child) > a > div {
  min-height: 330px;
}

.home-feed .home-aroma-band {
  overflow: hidden;
  margin-top: 72px;
  padding: 54px 34px 38px;
  border-radius: 12px;
}

.home-feed .home-band-inner {
  width: 100%;
}

.home-feed .aroma-preview-grid {
  grid-template-columns: 1fr;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.home-feed .aroma-preview {
  display: grid;
  grid-template-columns: 52px minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 148px;
  padding: 24px;
  border-right: 0;
}

.home-feed .aroma-index,
.home-feed .aroma-preview h3,
.home-feed .aroma-preview p {
  margin: 0;
}

.home-feed .aroma-tags {
  grid-column: 2 / -1;
  margin-top: -7px;
}

.home-feed .origin-feature {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  padding-top: 72px;
}

.home-feed .origin-feature figure,
.home-feed .origin-feature figure img {
  min-height: 500px;
}

.home-feed .origin-feature-copy {
  align-self: center;
}

.origin-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.origin-facts > div {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-facts small,
.origin-facts strong {
  display: block;
}

.origin-facts small {
  color: var(--muted);
  font-size: 11px;
}

.origin-facts strong {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-process-grid li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  min-height: 178px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.home-process-grid li:last-child {
  grid-column: 1 / -1;
  grid-template-columns: 46px minmax(0, 560px);
}

.home-process-grid li > span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 14px;
}

.home-process-grid h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.home-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-feed .brewing-overview {
  gap: 36px;
  margin-top: 72px;
  padding: 42px 36px;
}

.home-feed .brewing-overview h2 {
  font-size: 34px;
}

.home-feed .brewing-quick-grid {
  grid-template-columns: 1fr;
}

.home-feed .brewing-quick-grid > div {
  min-height: 126px;
}

.home-posts-section {
  padding-bottom: 0;
}

.home-sidebar {
  display: grid;
  gap: 16px;
}

.home-sidebar-card {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.home-sidebar-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.35;
}

.home-sidebar-card > p:not(.eyebrow) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.home-brand-note {
  min-height: 350px;
  background:
    radial-gradient(circle at 86% 13%, rgba(184, 137, 63, 0.24), transparent 29%),
    var(--forest-strong);
  color: #fff;
}

.home-brand-note > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.brand-note-signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-note-signature span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.brand-note-signature strong {
  color: #e7c780;
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.home-quick-links {
  padding: 8px 20px 12px;
}

.home-quick-links h2 {
  padding: 18px 4px 14px;
  font-size: 20px;
}

.home-quick-links a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 15px 4px;
  border-top: 1px solid var(--line);
}

.home-quick-links a > span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 11px;
}

.home-quick-links a strong,
.home-quick-links a small {
  display: block;
}

.home-quick-links a strong {
  font-size: 14px;
}

.home-quick-links a small {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-overflow: ellipsis;
}

.home-quick-links a em {
  color: var(--forest-strong);
  font-style: normal;
  transition: transform 0.2s ease;
}

.home-quick-links a:hover em {
  transform: translateX(4px);
}

.home-batch-note .text-link {
  margin-top: 22px;
  font-size: 12px;
}

.home-consult-card {
  position: sticky;
  top: 94px;
  border-color: #315c49;
  background: var(--forest);
  color: #fff;
}

.home-consult-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.home-consult-card .button {
  width: 100%;
  margin-top: 22px;
}

.home-principles {
  margin-top: 92px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.home-principles .section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.home-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-principle-grid article {
  min-height: 252px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-principle-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 13px;
}

.home-principle-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.home-principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.home-principles + .consult-band {
  margin-top: 20px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 72%, #fff);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .home-opening {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  }

  .home-opening .home-hero-inner {
    padding-inline: 42px;
  }

  .home-content-shell {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 20px;
  }

  .home-feed .origin-feature {
    grid-template-columns: 1fr;
  }

  .home-feed .origin-feature-copy {
    max-width: none;
  }

  .home-principles {
    padding: 46px;
  }

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

@media (max-width: 900px) {
  .home-opening {
    grid-template-columns: 1fr;
  }

  .home-opening .home-hero {
    min-height: 500px;
  }

  .home-opening-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .opening-card {
    min-height: 260px;
  }

  .home-content-shell {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .home-sidebar-card {
    min-height: 280px;
  }

  .home-consult-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .home-notice,
  .home-opening,
  .home-content-shell,
  .home-principles {
    width: min(100% - 30px, 100%);
  }

  .home-notice {
    padding: 9px 0;
  }

  .home-notice > div {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px 12px;
  }

  .home-notice > div > span {
    align-self: start;
  }

  .home-notice p {
    font-size: 11px;
  }

  .home-notice a {
    grid-column: 2;
    width: fit-content;
  }

  .home-opening .home-hero {
    min-height: 520px;
    max-height: none;
  }

  .home-opening .home-hero-inner {
    width: 100%;
    align-items: center;
    padding: 34px 24px;
  }

  .home-opening .home-hero-copy h1 {
    font-size: 44px;
  }

  .home-opening-aside,
  .home-sidebar,
  .home-product-grid,
  .home-post-grid,
  .home-process-grid,
  .home-principle-grid {
    grid-template-columns: 1fr;
  }

  .opening-card {
    min-height: 260px;
    padding: 24px;
  }

  .home-opening + .home-pathways {
    width: min(100% - 30px, 100%);
    margin-top: 14px;
  }

  .home-content-shell {
    margin-top: 12px;
  }

  .home-feed .home-products-section {
    padding-top: 52px;
  }

  .home-product-grid > .product-card:first-child,
  .home-post-grid > .post-card:first-child,
  .home-process-grid li:last-child {
    grid-column: auto;
  }

  .home-product-grid > .product-card:first-child .product-card-link,
  .home-post-grid > .post-card:first-child > a {
    display: flex;
  }

  .home-product-grid > .product-card:first-child img,
  .home-post-grid > .post-card:first-child img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-product-grid > .product-card:first-child .product-card-body,
  .home-post-grid > .post-card:first-child > a > div,
  .home-product-grid > .product-card:not(:first-child) .product-card-body,
  .home-post-grid > .post-card:not(:first-child) > a > div {
    min-height: 0;
    padding: 24px;
  }

  .home-feed .home-aroma-band {
    margin-top: 62px;
    padding: 44px 20px 24px;
  }

  .home-feed .aroma-preview {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 22px 16px;
  }

  .home-feed .aroma-preview p,
  .home-feed .aroma-tags {
    grid-column: 2;
  }

  .home-feed .aroma-preview p {
    margin-top: 8px;
  }

  .home-feed .aroma-tags {
    margin-top: 0;
  }

  .home-feed .origin-feature figure,
  .home-feed .origin-feature figure img {
    min-height: 360px;
  }

  .origin-facts {
    grid-template-columns: 1fr;
  }

  .home-process-grid li,
  .home-process-grid li:last-child {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 22px;
  }

  .home-feed .brewing-overview {
    padding: 32px 22px;
  }

  .home-sidebar {
    margin-top: 64px;
  }

  .home-sidebar-card {
    min-height: 0;
  }

  .home-brand-note {
    min-height: 330px;
  }

  .home-principles {
    margin-top: 72px;
    padding: 34px 20px;
  }

  .home-principle-grid article {
    min-height: 0;
  }

  .home-principle-grid article > span {
    margin-bottom: 25px;
  }

  .home-principles + .consult-band {
    margin-top: 15px;
  }
}

@media (max-width: 420px) {
  .opening-season-card dl {
    grid-template-columns: 1fr;
  }

  .opening-season-card {
    min-height: 0;
  }

  .opening-aroma-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focused home page */
.home-price-showcase,
.home-aroma-compact,
.home-article-strip {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.home-price-showcase {
  padding-top: 42px;
}

.home-price-showcase .section-heading {
  margin-bottom: 22px;
}

.home-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home-price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-price-card:hover {
  border-color: color-mix(in srgb, var(--forest) 55%, var(--line));
  box-shadow: 0 14px 34px rgba(27, 39, 32, 0.08);
  transform: translateY(-2px);
}

.home-price-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-price-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-price-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
}

.home-price-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.home-price-body > p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.home-price-chips {
  margin-bottom: 0;
}

.home-price-chips span {
  min-height: 24px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

.home-price-offer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
}

.home-price-offer strong {
  color: var(--clay);
  font-family: var(--numeric-font);
  font-size: 28px;
  line-height: 1;
}

.home-price-offer span,
.home-price-offer small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.home-price-offer small {
  color: var(--gold);
}

.home-aroma-compact,
.home-article-strip {
  padding-top: 36px;
}

.home-aroma-compact .section-heading,
.home-article-strip .section-heading {
  align-items: center;
  gap: 24px;
  margin-bottom: 14px;
}

.home-aroma-compact .section-heading h2,
.home-article-strip .section-heading h2 {
  font-size: 28px;
  line-height: 1.25;
}

.home-aroma-compact .section-heading p:not(.eyebrow),
.home-article-strip .section-heading p:not(.eyebrow) {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
}

.home-aroma-compact .text-link,
.home-article-strip .text-link {
  white-space: nowrap;
}

.home-aroma-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-aroma-rail a {
  display: grid;
  align-content: start;
  min-height: 76px;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.home-aroma-rail a:hover {
  background: var(--surface-soft);
  color: var(--forest-strong);
}

.home-aroma-rail span,
.home-aroma-rail strong,
.home-aroma-rail small {
  display: block;
}

.home-aroma-rail span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
}

.home-aroma-rail strong {
  margin-top: 8px;
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 17px;
}

.home-aroma-rail small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.home-article-strip .section-heading {
  margin-bottom: 16px;
}

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

.home-knowledge-list a {
  display: grid;
  min-height: 96px;
  gap: 6px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-knowledge-list a:hover {
  border-color: color-mix(in srgb, var(--forest) 52%, var(--line));
  box-shadow: 0 12px 28px rgba(27, 39, 32, 0.07);
  transform: translateY(-2px);
}

.home-knowledge-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.home-knowledge-list strong {
  overflow: hidden;
  color: var(--forest-strong);
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-knowledge-list small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Content priority pages */
.product-collection-hub {
  padding-top: 28px;
}

.product-hub-note {
  margin-bottom: 16px;
}

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

.product-feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-feature-card:hover {
  border-color: color-mix(in srgb, var(--forest) 55%, var(--line));
  box-shadow: 0 14px 34px rgba(27, 39, 32, 0.08);
  transform: translateY(-2px);
}

.product-feature-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.product-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-feature-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-feature-body h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
}

.product-feature-body > p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-feature-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-feature-card.is-primary {
  border-color: color-mix(in srgb, var(--gold) 40%, var(--line));
}

.product-feature-card.is-primary a {
  display: flex;
}

.product-feature-card.is-primary img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.product-feature-card.is-primary .product-feature-body {
  min-height: 0;
  padding: 24px;
}

.product-feature-card.is-primary .product-feature-body h2 {
  font-size: 28px;
}

.product-archive {
  padding-top: 62px;
}

.product-shop {
  padding-top: 28px;
}

.product-shop-hero {
  padding: 46px 0 26px;
}

.product-shop-note {
  margin-bottom: 14px;
}

.product-index-grid {
  align-items: stretch;
}

.product-index-grid .product-card-body {
  min-height: 184px;
}

.product-filter-bar {
  display: grid;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.product-filter-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.product-filter-label {
  padding-top: 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.product-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter-bar button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.product-filter-bar button:hover,
.product-filter-bar button.is-active {
  border-color: color-mix(in srgb, var(--forest) 58%, var(--line));
  background: var(--forest-strong);
  color: #fff;
}

.product-filter-bar button:disabled {
  border-color: color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  color: color-mix(in srgb, var(--muted) 58%, transparent);
  cursor: not-allowed;
}

.product-filter-bar button:disabled:hover {
  border-color: color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  color: color-mix(in srgb, var(--muted) 58%, transparent);
}

.product-filter-bar button:disabled span {
  background: color-mix(in srgb, var(--line) 62%, transparent);
}

.product-filter-bar button.is-extra {
  border-style: dashed;
}

.product-filter-bar span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  color: inherit;
  font-family: var(--numeric-font);
  font-size: 12px;
}

.product-filter-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-filter-meta strong {
  font-family: var(--numeric-font);
  font-weight: 900;
}

.product-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.product-sort-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-sort-bar > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-sort-bar button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.product-sort-bar button:hover,
.product-sort-bar button.is-active {
  border-color: color-mix(in srgb, var(--gold) 46%, var(--line));
  background: color-mix(in srgb, var(--gold) 12%, var(--surface));
  color: var(--forest-strong);
}

.product-collection-intro {
  padding-top: 18px;
}

.product-collection-intro .prose {
  margin-top: 0;
}

.product-collection-intro .prose h2 {
  margin-top: 0;
}

.aroma-index-band {
  padding-top: 28px;
}

.aroma-index-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.aroma-index-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.aroma-index-list a:hover {
  background: var(--surface-soft);
  color: var(--forest-strong);
}

.aroma-index-list span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
}

.aroma-index-list strong {
  font-size: 14px;
}

.aroma-alias {
  margin: -8px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.variety-intro {
  padding-bottom: 24px;
}

.variety-intro .prose {
  margin-left: 0;
}

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

.variety-map a {
  display: block;
  min-height: 188px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--forest) 9%, transparent), transparent 52%),
    var(--surface);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.variety-map a:hover,
.variety-map a:focus-visible {
  border-color: color-mix(in srgb, var(--gold) 52%, var(--line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--gold) 12%, transparent), transparent 54%),
    var(--surface-soft);
  transform: translateY(-2px);
}

.variety-map a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 34%, transparent);
  outline-offset: 3px;
}

.variety-map span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
  font-weight: 800;
}

.variety-map h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}

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

.variety-map .eyebrow {
  margin-top: 28px;
}

.variety-layer-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.variety-layer-guide > div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

.variety-layer-guide span,
.variety-layer-guide strong,
.variety-layer-guide small {
  display: block;
}

.variety-layer-guide span {
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 11px;
  font-weight: 800;
}

.variety-layer-guide strong {
  margin-top: 22px;
  color: var(--forest-strong);
  font-size: 17px;
}

.variety-layer-guide small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.variety-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.variety-detail {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.variety-detail h2 {
  margin: 0 0 14px;
  font-size: 32px;
}

.variety-detail > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.variety-role {
  margin-top: 14px;
  color: var(--forest-strong);
  font-size: 13px;
  font-weight: 800;
}

.variety-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.variety-facts > div {
  min-height: 70px;
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.variety-facts dd {
  color: var(--forest-strong);
  font-size: 13px;
}

.variety-reading-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  list-style: none;
}

.variety-reading-list li {
  position: relative;
  padding-left: 16px;
}

.variety-reading-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.variety-product-links {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.variety-product-links .text-link {
  font-size: 13px;
}

.variety-boundary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  margin-top: 72px;
  padding: 38px;
  border-top: 3px solid var(--clay);
  background: var(--surface);
}

.variety-boundary h2 {
  margin: 0;
  font-size: 30px;
}

.variety-boundary > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.inline-link {
  color: var(--forest-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--gold) 60%, transparent);
  text-underline-offset: 4px;
}

.pricing-dashboard {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 42px;
}

.pricing-dashboard-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 32px;
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--forest) 8%, transparent), transparent 50%),
    var(--surface);
}

.pricing-dashboard-copy h1 {
  max-width: 380px;
  margin: 0 0 16px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.05;
}

.pricing-dashboard-copy > p:not(.eyebrow):not(.pricing-dashboard-note) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.pricing-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-status-grid > div {
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-status-grid dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 28px;
}

.pricing-dashboard-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.pricing-snapshot {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-snapshot-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
}

.pricing-snapshot-head h2 {
  margin: 0;
  font-size: 30px;
}

.pricing-review {
  display: grid;
  min-width: 140px;
  gap: 6px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.pricing-review span {
  color: var(--muted);
  font-size: 11px;
}

.pricing-review strong {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 18px;
}

.pricing-snapshot-list {
  display: grid;
}

.pricing-snapshot-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(260px, 0.95fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.pricing-snapshot-row:last-child {
  border-bottom: 0;
}

.pricing-snapshot-product {
  min-width: 0;
}

.pricing-snapshot-product h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.3;
}

.pricing-snapshot-product h3 a {
  color: var(--forest-strong);
}

.pricing-snapshot-product small {
  display: block;
  color: var(--muted);
  font-family: var(--numeric-font);
  font-size: 10px;
}

.pricing-spec-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-spec-strip > div {
  min-height: 72px;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-spec-strip dd {
  color: var(--forest-strong);
  font-family: var(--numeric-font);
  font-size: 17px;
}

.pricing-spec-strip small,
.pricing-sku-meta,
.price-card dt small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-page {
  padding: 28px 0 0;
}

.pricing-read-path {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-read-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.pricing-read-copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.pricing-read-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
}

.pricing-read-copy p:last-of-type {
  margin-bottom: 0;
}

.pricing-read-copy .text-link {
  margin-top: 22px;
  font-size: 13px;
}

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

.pricing-rule-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--gold) 9%, transparent), transparent 50%),
    var(--surface);
}

.pricing-rule-grid span {
  display: block;
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
  font-weight: 800;
}

.pricing-rule-grid h3 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.pricing-rule-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.pricing-table-note {
  margin-top: 26px;
  margin-bottom: 14px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

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

.pricing-table thead th {
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody th {
  min-width: 210px;
  font-size: 14px;
}

.pricing-table tbody th a {
  color: var(--forest-strong);
}

.pricing-table tbody th small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--numeric-font);
  font-size: 10px;
  font-weight: 400;
}

.pricing-sku-label {
  display: block;
  color: var(--ink);
  font-family: var(--numeric-font);
}

.price-value {
  color: var(--forest-strong);
  font-family: var(--price-font);
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.price-status {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.price-status.is-confirmed {
  border-color: color-mix(in srgb, var(--forest) 40%, var(--line));
  color: var(--forest-strong);
}

.pricing-mobile-list {
  display: none;
}

.knowledge-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: start;
  padding-top: 42px;
}

.knowledge-guides .section-heading {
  margin-bottom: 22px;
}

.knowledge-guides .section-heading > div {
  max-width: 620px;
}

.knowledge-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.knowledge-guide-grid a {
  display: block;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.knowledge-guide-grid a:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.knowledge-guide-grid span,
.knowledge-guide-grid strong,
.knowledge-guide-grid small {
  display: block;
}

.knowledge-guide-grid span {
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--numeric-font);
  font-size: 12px;
}

.knowledge-guide-grid strong {
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 20px;
}

.knowledge-guide-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.knowledge-feature {
  display: grid;
  gap: 14px;
}

.knowledge-feature-main,
.knowledge-feature-link {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.knowledge-feature-main:hover,
.knowledge-feature-link:hover {
  border-color: color-mix(in srgb, var(--forest) 55%, var(--line));
  box-shadow: 0 14px 34px rgba(27, 39, 32, 0.08);
  transform: translateY(-2px);
}

.knowledge-feature-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.knowledge-feature-body {
  padding: 24px;
}

.knowledge-feature-body span,
.knowledge-feature-link span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.knowledge-feature-body h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
}

.knowledge-feature-body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.knowledge-feature-body small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.knowledge-feature-link {
  display: block;
  min-height: 142px;
  padding: 22px 24px;
}

.knowledge-feature-link strong,
.knowledge-feature-link small {
  display: block;
}

.knowledge-feature-link strong {
  font-family: "Noto Serif SC", "STSong", serif;
  font-size: 20px;
  line-height: 1.45;
}

.knowledge-feature-link small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.knowledge-archive {
  padding-top: 72px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .aroma-index-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .aroma-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aroma-hero-copy {
    min-height: 0;
    padding: 18px 0 8px;
  }

  .aroma-hero-copy h1 {
    max-width: none;
  }

  .aroma-hero-stats {
    max-width: 520px;
  }

  .aroma-hero-board {
    min-height: 316px;
  }

  .aroma-reading-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aroma-reading-aside {
    position: static;
  }

  .knowledge-hub {
    grid-template-columns: 1fr;
  }

  .knowledge-feature {
    order: -1;
  }

  .knowledge-feature-main {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .knowledge-feature-main img {
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
  }

  .knowledge-feature-body {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    justify-content: center;
  }

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

  .pricing-dashboard {
    grid-template-columns: 1fr;
  }

  .pricing-dashboard-copy {
    min-height: 0;
  }

  .pricing-snapshot-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .pricing-snapshot-row .text-link {
    justify-self: start;
  }

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

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

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

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

  .home-knowledge-list a:last-child {
    grid-column: 1 / -1;
  }

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

  .variety-detail-grid > article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .pricing-dashboard {
    gap: 16px;
    padding-top: 28px;
  }

  .pricing-dashboard-copy {
    padding: 26px 22px;
  }

  .pricing-dashboard-copy h1 {
    font-size: 42px;
  }

  .pricing-status-grid dd {
    font-size: 22px;
  }

  .pricing-snapshot-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .pricing-snapshot-head h2 {
    font-size: 26px;
  }

  .pricing-snapshot-row {
    padding: 20px 22px;
  }

  .pricing-spec-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .pricing-page {
    padding-top: 30px;
  }

  .pricing-notice {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .pricing-review {
    width: 100%;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-read-path {
    grid-template-columns: 1fr;
  }

  .pricing-rule-grid {
    grid-template-columns: 1fr;
  }

  .pricing-rule-grid article {
    min-height: 0;
  }

  .pricing-rule-grid h3 {
    margin-top: 28px;
  }

  .pricing-table-wrap {
    display: none;
  }

  .pricing-mobile-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
  }

  .product-collection-hub {
    padding-top: 22px;
  }

  .aroma-commerce-hero,
  .aroma-stock-section,
  .aroma-product-section {
    width: min(100% - 30px, 100%);
  }

  .aroma-commerce-copy {
    padding: 24px 22px;
  }

  .aroma-commerce-copy h1 {
    font-size: 42px;
  }

  .aroma-commerce-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .aroma-commerce-panel-head small {
    text-align: left;
  }

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

  .aroma-commerce-tile {
    min-height: 108px;
  }

  .aroma-stock-section .product-index-grid,
  .aroma-product-section .product-index-grid {
    grid-template-columns: 1fr;
  }

  .home-price-showcase,
  .home-aroma-compact,
  .home-article-strip {
    width: min(100% - 30px, 100%);
  }

  .home-price-showcase {
    padding-top: 30px;
  }

  .home-price-showcase .section-heading {
    margin-bottom: 18px;
  }

  .home-price-card a {
    display: flex;
    flex-direction: column;
  }

  .home-price-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .home-price-body {
    padding: 22px;
  }

  .home-price-body h3 {
    font-size: 25px;
  }

  .home-aroma-compact,
  .home-article-strip {
    padding-top: 38px;
  }

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

  .home-aroma-rail a {
    min-height: 88px;
    padding: 14px;
  }

  .home-aroma-rail strong {
    margin-top: 14px;
    font-size: 18px;
  }

  .home-knowledge-list {
    grid-template-columns: 1fr;
  }

  .home-knowledge-list a:last-child {
    grid-column: auto;
  }

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

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

  .product-filter-label {
    padding-top: 0;
  }

  .product-shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-sort-bar {
    justify-content: flex-start;
  }

  .product-feature-card.is-primary {
    grid-row: auto;
  }

  .product-feature-card.is-primary a {
    display: flex;
  }

  .product-feature-card.is-primary img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .product-feature-card.is-primary .product-feature-body {
    min-height: 0;
    padding: 24px;
  }

  .product-feature-card.is-primary .product-feature-body h2,
  .product-feature-body h2 {
    font-size: 26px;
  }

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

  .product-archive {
    padding-top: 54px;
  }

  .price-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .price-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .price-card-heading h2 {
    margin: 0;
    font-size: 22px;
  }

  .price-card-heading small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-family: var(--numeric-font);
    font-size: 10px;
  }

  .price-card-heading .text-link {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .price-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .price-card dl > div {
    min-height: 78px;
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .price-card dd {
    color: var(--forest-strong);
    font-family: var(--numeric-font);
    font-size: 17px;
  }

  .aroma-index-band {
    padding-top: 12px;
  }

  .aroma-hero {
    width: min(100% - 30px, 100%);
    gap: 16px;
    margin-top: 26px;
  }

  .aroma-hero-copy {
    padding-top: 8px;
  }

  .aroma-hero-copy::after {
    display: none;
  }

  .aroma-hero-copy h1 {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .aroma-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .aroma-hero-stats {
    margin-top: 22px;
  }

  .aroma-hero-stats > div {
    padding: 11px 10px;
  }

  .aroma-hero-stats dd {
    font-size: 21px;
  }

  .aroma-hero-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(86px, auto);
    gap: 8px;
    min-height: 0;
    padding: 8px;
    box-shadow: none;
  }

  .aroma-hero-tile {
    padding: 11px 10px 10px;
  }

  .aroma-hero-tile::before {
    top: 9px;
    right: 10px;
    left: 10px;
  }

  .aroma-hero-tile::after {
    right: 4px;
    bottom: 1px;
    font-size: 42px;
  }

  .aroma-hero-tile:hover {
    transform: none;
  }

  .aroma-hero-tile strong {
    font-size: 22px;
  }

  .aroma-hero-tile span {
    margin-top: 7px;
  }

  .aroma-hero-tile small {
    margin-top: 6px;
    font-size: 10px;
  }

  .aroma-reading-panel {
    width: min(100% - 30px, 100%);
    margin-top: 46px;
    padding-top: 30px;
  }

  .aroma-reading-copy {
    font-size: 15px;
  }

  .aroma-detail-section {
    padding-top: 58px;
  }

  .other-aroma-section {
    padding-top: 54px;
  }

  .other-aroma-grid {
    grid-template-columns: 1fr;
  }

  .section-links {
    justify-content: flex-start;
  }

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

  .knowledge-hub {
    gap: 24px;
    padding-top: 26px;
  }

  .knowledge-feature-body {
    display: block;
    min-height: 0;
    padding: 22px;
  }

  .knowledge-feature-main {
    display: block;
  }

  .knowledge-feature-main img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .knowledge-feature-body h2 {
    font-size: 24px;
  }

  .knowledge-feature-link {
    min-height: 0;
    padding: 20px 22px;
  }

  .knowledge-guide-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-guide-grid a {
    min-height: 112px;
    padding: 18px 20px;
  }

  .knowledge-guide-grid span {
    margin-bottom: 18px;
  }

  .knowledge-archive {
    padding-top: 58px;
  }

  .variety-map {
    gap: 12px;
    grid-template-columns: 1fr;
    padding-top: 6px;
  }

  .variety-map a {
    min-height: 0;
    padding: 16px 18px;
  }

  .variety-map .eyebrow {
    margin-top: 16px;
  }

  .variety-map h2 {
    margin-top: 18px;
    font-size: 24px;
  }

  .variety-layer-guide {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .variety-layer-guide > div {
    min-height: 0;
    padding: 18px 20px;
  }

  .variety-layer-guide strong {
    margin-top: 14px;
  }

  .variety-detail-grid {
    grid-template-columns: 1fr;
  }

  .variety-detail-grid > article:last-child {
    grid-column: auto;
  }

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

  .variety-facts {
    grid-template-columns: 1fr;
  }

  .variety-boundary {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 54px;
    padding: 28px 22px;
  }
}
