@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600;700;900&display=swap");

:root {
  color-scheme: light;
  --paper: #f8f1df;
  --paper-light: #fffaf0;
  --ink: #3f3b24;
  --muted: #6f684c;
  --green: #4f5826;
  --green-dark: #303718;
  --olive: #899052;
  --gold: #b39b62;
  --line: rgba(135, 115, 65, 0.28);
  --soft-line: rgba(135, 115, 65, 0.15);
  --shadow: 0 18px 48px rgba(77, 65, 34, 0.14);
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 2%, rgba(255,255,255,.76), transparent 28rem),
    repeating-linear-gradient(93deg, rgba(89,71,33,.018) 0 1px, transparent 1px 5px),
    var(--paper);
  line-height: 1.85;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130' viewBox='0 0 130 130'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.contact-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.contact-page main { flex: 1 0 auto; }
.contact-page .site-footer { margin-top: auto; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--green-dark); font-weight: 700; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 6.8vw, 92px); line-height: 1.12; letter-spacing: .08em; }
h2 { margin-bottom: 16px; font-size: clamp(29px, 3.5vw, 48px); line-height: 1.25; letter-spacing: .12em; }
h3 { margin-bottom: 8px; font-size: 21px; letter-spacing: .08em; }
dt { color: #7a673c; font-size: 13px; font-weight: 700; }
dd { margin: 0; color: var(--ink); font-size: 15px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(235px, 1fr) auto minmax(175px, 1fr);
  align-items: center;
  min-height: 92px;
  padding: 8px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(255, 251, 239, .93);
  backdrop-filter: blur(14px);
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: max-content;
  height: 78px;
}
.brand-mark img { width: auto; height: 78px; object-fit: contain; }
.brand-name {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.3vw, 52px);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}
.main-nav a { position: relative; padding: 12px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: left .25s ease, right .25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { left: 0; right: 0; }
.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  letter-spacing: .04em;
}
.header-phone::before {
  content: "";
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='%234f5826'%3E%3Cpath d='M5.2 8.8C14.8 4.9 25.2 4.9 34.8 8.8c1.4.6 2.2 2.1 1.9 3.6l-.5 2.8c-.3 1.7-1.9 2.8-3.6 2.5l-3.3-.6a3.1 3.1 0 0 1-2.5-3.4l.2-1.8a18.2 18.2 0 0 0-14 0l.2 1.8a3.1 3.1 0 0 1-2.5 3.4l-3.3.6c-1.7.3-3.3-.8-3.6-2.5l-.5-2.8c-.3-1.5.5-3 1.9-3.6Z'/%3E%3Cpath fill-rule='evenodd' d='M14 14h12l5.5 10.2V35h-23V24.2L14 14Zm1.5 8h3v3h-3v-3Zm6 0h3v3h-3v-3Zm-6 5h3v3h-3v-3Zm6 0h3v3h-3v-3Z' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
}
.nav-toggle { display: none; }

.eyebrow {
  margin-bottom: 12px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.lead { max-width: 660px; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); }
.section { padding: clamp(64px, 8vw, 112px) clamp(22px, 6vw, 96px); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.home-section-title { max-width: 780px; margin: 0 auto clamp(42px, 6vw, 72px); text-align: center; }
.home-section-title h2 { margin-bottom: 15px; }
.home-section-title p { margin-bottom: 0; color: var(--muted); }
.section-heading::before {
  content: "❧";
  display: block;
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 28px;
}
.section-heading p:last-child { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 23px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255,250,239,.62);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: transform .2s ease, background .2s ease;
}
.button::after { content: "›"; margin-left: 12px; font-size: 20px; line-height: 1; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fffaf0; background: var(--olive); border-color: var(--olive); }
.button.disabled { opacity: .55; pointer-events: none; }

/* Home */
.home-hero {
  position: relative;
  width: min(100% - clamp(28px, 5vw, 80px), 1560px);
  min-height: clamp(560px, 66vw, 690px);
  margin: clamp(28px, 4vw, 58px) auto clamp(56px, 6vw, 86px);
  border: 1px solid var(--soft-line);
  background: rgba(255,250,239,.74);
  box-shadow: var(--shadow);
}
.hero-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(0, 1.62fr);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease, visibility .65s;
}
.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.home-hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 88px) clamp(36px, 4vw, 60px);
  background:
    radial-gradient(circle at 8% 15%, rgba(255,255,255,.72), transparent 14rem),
    rgba(255,250,239,.96);
}
.home-hero .eyebrow { color: #6b713a; }
.home-hero h1,
.home-hero h2 {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.42;
  letter-spacing: .08em;
}
.hero-description {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 2;
}
.hero-button {
  align-self: flex-start;
  min-width: 190px;
  min-height: 50px;
}
.product-button { min-height: 50px; }
.hero-visual {
  position: absolute;
  inset: 0 0 0 32.5%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(48,43,24,.1), transparent 24%, rgba(48,43,24,.04));
}
.hero-visual-award-114 { background-image: url("assets/banner-award-114.jpg"); background-position: center 44%; }
.hero-visual-award-113 { background-image: url("assets/banner-award-113.jpg"); background-position: center 48%; }
.hero-visual-origin { background-image: url("assets/banner-camellia-garden.jpg"); background-position: center; }
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255,250,239,.42);
  color: #fffaf0;
  background: rgba(48,55,24,.48);
  font: 300 42px/1 Georgia, serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease;
}
.hero-arrow:hover { background: rgba(48,55,24,.78); }
.hero-prev { left: -49px; border-right: 0; }
.hero-next { right: -49px; border-left: 0; }
.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 12;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}
.hero-pagination button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255,250,239,.9);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 1px 5px rgba(48,43,24,.34);
  cursor: pointer;
}
.hero-pagination button.is-active { background: #fffaf0; }
.hero-slide.is-active .home-hero-copy > * { animation: hero-copy-in .7s both; }
.hero-slide.is-active .home-hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .home-hero-copy > *:nth-child(3) { animation-delay: .15s; }
.hero-slide.is-active .home-hero-copy > *:nth-child(4) { animation-delay: .22s; }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(16px); } }

.home-product-showcase {
  position: relative;
  width: min(100% - clamp(20px, 3vw, 52px), 1660px);
  min-height: clamp(660px, 52vw, 820px);
  margin: 0 auto clamp(64px, 8vw, 112px);
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background: #f5e9d5;
  box-shadow: var(--shadow);
}
.home-product-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.product-showcase-copy {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 64px);
  width: min(57%, 840px);
  padding: clamp(34px, 3.4vw, 58px);
  transform: translateY(-50%);
}
.product-award-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #806b36;
  line-height: 1.2;
}
.award-medal-icon { width: 48px; height: 64px; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 4px 5px rgba(91,57,18,.2)); }
.product-award-highlight span {
  display: grid;
  gap: 3px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,.72), 0 2px 5px rgba(121,82,18,.13);
}
.product-award-highlight strong,
.product-award-highlight strong em {
  color: #dfb911;
  filter: drop-shadow(0 1px 0 rgb(247, 245, 245));
}
.product-award-highlight span b {
  color: var(--green-dark);
  font-size: 27px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 2px 4px rgba(70,65,34,.12);
}
.product-award-highlight strong {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.product-award-highlight strong em {
  display: inline-block;
  margin-right: .28em;
  font-size: 1.26em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  filter: drop-shadow(0 1px 0 rgb(247, 245, 245));
}
.product-award-highlight strong::after {
  content: "";
  position: absolute;
  left: 0;
  width: 82%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, #b47a12 18%, #ffe797 48%, #b47a12 78%, transparent 100%);
  background-size: 220% 100%;
  box-shadow: 0 1px 5px rgba(184,126,21,.35);
  animation: award-underline-shine 4.8s ease-in-out infinite;
}
@keyframes award-underline-shine {
  0%, 68%, 100% { background-position: 100% center; opacity: .55; }
  82% { background-position: 0 center; opacity: 1; }
}
.product-showcase-copy h2 { margin-bottom: 12px; font-size: clamp(34px, 3.2vw, 52px); line-height: 1.3; letter-spacing: .06em; }
.product-showcase-copy h2 span { color: var(--olive); font-size: 1.08em; font-weight: 900; }
.product-showcase-lead { max-width: none; margin-bottom: 24px; color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.85; }
.product-highlights { display: grid; gap: 0; margin: 0 0 24px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.product-highlights li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.product-highlight-icon { width: 40px; height: 40px; color: var(--olive); stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.product-highlight-icon path:first-child { stroke-width: 1.9; }
.product-highlight-number { display: block; margin-bottom: 3px; color: var(--gold); font-size: 11px; font-weight: 700; line-height: 1; letter-spacing: .16em; }
.product-highlights p { margin: 0; color: var(--ink); font-size: clamp(15px, 1.16vw, 18px); line-height: 1.75; }
.product-sizes { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 22px; color: var(--muted); font-size: 15px; letter-spacing: .06em; }
.product-sizes span { padding-right: 22px; border-right: 1px solid var(--line); }
.product-sizes span:last-child { padding-right: 0; border-right: 0; }
.product-sizes strong { color: var(--green-dark); font-size: 22px; font-weight: 600; }

@media (min-width: 981px) {
  .product-showcase-copy {
    right: clamp(8px, 2vw, 32px);
    width: min(54%, 790px);
  }
  .product-showcase-lead { max-width: 700px; }
  .product-highlights { max-width: 650px; }
}

.home-story-strip {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249,242,219,.95), rgba(249,242,219,.72) 38%, rgba(249,242,219,.22) 72%, rgba(249,242,219,.12)),
    url("assets/home-story-orchard.jpg") center / cover no-repeat;
}
.story-strip-copy { position: relative; z-index: 2; padding-left: 40px; }
.story-strip-copy p:not(.eyebrow) { color: var(--muted); }
.story-mini-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.5vw, 22px); }
.story-mini-cards article {
  position: relative;
  isolation: isolate;
  aspect-ratio: .78;
  padding: 13% 14% 16%;
  filter: drop-shadow(0 15px 15px rgba(67,55,28,.2));
}
.story-mini-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/paper_background.png?v=20260731-2") center / 100% 100% no-repeat;
}
.story-photo {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  clip-path: polygon(1.5% 2%, 20% .5%, 39% 1.8%, 60% .4%, 80% 1.6%, 98.5% .8%, 99.4% 20%, 98.2% 41%, 99.5% 61%, 98.3% 81%, 99% 98.5%, 80% 99.3%, 60% 98.1%, 40% 99.5%, 20% 98.2%, .8% 99%, 1.7% 80%, .5% 60%, 1.8% 40%, .6% 20%);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-composite: intersect;
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 14px 7px rgba(245,225,187,.42);
}
.story-mini-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) sepia(.14) contrast(.95);
}
.story-mini-cards .story-oil-card img { object-position: center 58%; }
.story-mini-cards span {
  display: block;
  padding-top: clamp(13px, 1.5vw, 30px);
  color: #4b452d;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  letter-spacing: .1em;
  text-shadow: 0 1px rgba(255,255,255,.45);
}

/* Inner pages */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
  height: 240px;
  min-height: 240px;
  padding: clamp(20px, 2.4vw, 28px) clamp(25px, 8vw, 130px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249,240,215,.82), rgba(249,240,215,.2) 58%, rgba(249,240,215,.05)),
    url("assets/inner-page-hero-landscape.png") center / cover no-repeat;
}
.page-hero::after {
  content: none;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { max-width: 760px; margin-bottom: 12px; font-size: clamp(36px, 4.2vw, 56px); }
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero .lead { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.75; }
.page-hero > img { justify-self: center; max-height: 190px; width: auto; filter: drop-shadow(0 20px 18px rgba(48,40,24,.2)); }
.product-hero h1 { margin-bottom: 8px; font-size: clamp(34px, 3.7vw, 50px); }
.product-hero .lead { margin-bottom: 0; line-height: 1.6; }
.product-hero .actions { margin-top: 14px; }
.simple-hero, .story-hero, .contact-hero { display: block; height: 240px; min-height: 240px; padding-right: 42%; }
.simple-hero::before, .story-hero::before, .contact-hero::before {
  content: none;
}

.product-specification {
  padding-block: clamp(56px, 7.2vw, 102px);
}
.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: end;
  max-width: 1400px;
  margin: auto;
}
.product-lineup { position: relative; min-width: 0; }
.product-bottles {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 28px);
  min-height: 610px;
  padding: 18px 8px 0;
}
.product-bottles::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 8px;
  left: 5%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(68,61,31,.2), transparent 67%);
  filter: blur(4px);
}
.product-bottle {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: end;
  width: 46%;
  margin: 0;
}
.product-bottle img {
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(60,50,24,.18));
}
.product-bottle--250 img { height: clamp(410px, 38vw, 520px); }
.product-bottle--500 img { height: clamp(505px, 46vw, 630px); }
.product-size-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 63px;
  margin-top: 25px;
  padding: 6px 15px;
  color: #f8f1df;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(39,62,45,.16);
}
.product-size-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  padding: 0 14px;
}
.product-size-strip > div + div { border-left: 1px solid rgba(248,241,223,.48); }
.product-size-strip svg {
  flex: 0 0 auto;
  width: 16px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.product-size-strip p {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 7px;
  margin: 0;
  line-height: 1;
}
.product-size-strip strong { font: 600 clamp(27px, 2.8vw, 38px)/1 Georgia, "Times New Roman", serif; letter-spacing: .04em; }
.product-size-strip p > span { font: 600 15px/1 Georgia, "Times New Roman", serif; }
.product-information {
  overflow: hidden;
  border: 1px solid rgba(137,144,82,.12);
  border-radius: 18px;
  background: rgba(255,253,247,.84);
  box-shadow: 0 18px 52px rgba(77,65,34,.09);
}
.product-information-header {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  padding: 30px 34px 25px;
}
.information-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(48,76,56,.3);
  border-radius: 50%;
  color: #315b46;
}
.information-mark svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.product-information-header h2 { margin-bottom: 7px; font-size: 26px; letter-spacing: .12em; }
.product-information-header p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.product-detail-list { margin: 0 34px; border-top: 1px solid var(--soft-line); }
.product-detail-list > div {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 59px;
  border-bottom: 1px solid var(--soft-line);
}
.product-detail-list dt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px 13px 8px;
  border-right: 1px solid var(--soft-line);
  color: #315b46;
  font-size: 20px;
  letter-spacing: .12em;
}
.detail-icon { display: grid; place-items: center; flex: 0 0 27px; width: 27px; height: 27px; }
.detail-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.product-detail-list dd { align-self: center; padding: 12px 22px; color: var(--ink); font-size: 20px; line-height: 1.7; }
.product-features { margin: 27px 34px 25px; }
.product-features > p { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; color: #315b46; font-size: 23px; font-weight: 700; letter-spacing: .12em; }
.feature-title-icon { display: inline-grid; place-items: center; width: 28px; height: 28px; }
.feature-title-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.product-features ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 205px;
  padding: 20px 9px 15px;
  border: 0;
  background: rgba(244,241,232,.78);
  text-align: center;
}
.product-features li > svg { width: 38px; height: 38px; margin-bottom: 10px; fill: none; stroke: #315b46; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.product-features strong { display: block; margin-bottom: 6px; color: #315b46; font-size: 22px; line-height: 1.3; letter-spacing: .04em; }
.product-features span { color: var(--ink); font-size: 17px; line-height: 1.55; }
.product-features small { margin-top: auto; padding-top: 5px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.product-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 14px 24px;
  border-top: 1px solid var(--soft-line);
  background: linear-gradient(90deg, rgba(244,241,232,.72), rgba(250,248,240,.88), rgba(244,241,232,.72));
  color: #405f4c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
}
.product-assurance span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(64,95,76,.14);
  border-radius: 999px;
  background: rgba(255,253,247,.72);
  white-space: nowrap;
}
.product-assurance svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #5c7d65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}
.competition-section {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7.2vw, 106px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(circle at 8% 16%, rgba(203,180,105,.18), transparent 25rem),
    radial-gradient(circle at 92% 86%, rgba(123,138,76,.14), transparent 28rem),
    #fffaf0;
}
.competition-section::before {
  content: "";
  position: absolute;
  top: -125px;
  right: -80px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(179,155,98,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(179,155,98,.04), 0 0 0 58px rgba(179,155,98,.025);
}
.competition-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}
.competition-heading h2 { margin-bottom: 17px; font-size: clamp(34px, 4.4vw, 58px); }
.competition-heading > p:last-child { margin: 0; color: var(--muted); font-size: clamp(15px, 1.35vw, 18px); line-height: 2; }
.competition-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.4vw, 48px); max-width: 1320px; margin: auto; }
.competition-card { overflow: hidden; border: 1px solid var(--line); background: rgba(248,241,223,.56); box-shadow: 10px 14px 0 rgba(137,144,82,.08); }
.competition-photo { position: relative; margin: 0; padding: clamp(20px, 3vw, 38px); overflow: hidden; background: #e8e0cb; }
.competition-photo img { width: 60%; margin: 0 auto; aspect-ratio: 3 / 4; object-fit: contain; filter: saturate(.9) contrast(.98); box-shadow: 0 12px 30px rgba(63,50,25,.17); transition: transform .55s ease; }
.competition-card:hover .competition-photo img { transform: scale(1.025); }
.competition-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 86px;
  padding: 9px 15px 8px;
  color: #fffaf0;
  background: rgba(48,55,24,.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.competition-photo figcaption span { font: 600 29px/1 Georgia, "Times New Roman", serif; }
.competition-copy { padding: clamp(27px, 3.2vw, 42px); }
.competition-year { margin-bottom: 9px; color: #987c3f; font-family: Georgia, "Times New Roman", serif; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.competition-title-row { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 24px); margin-bottom: 14px; }
.competition-title-row img { flex: 0 0 auto; width: clamp(48px, 4.2vw, 64px); height: auto; object-fit: contain; filter: drop-shadow(0 5px 6px rgba(91,57,18,.2)); }
.competition-copy h3 { margin: 0; color: #174c3a; font-size: clamp(25px, 2.5vw, 34px); letter-spacing: .1em; }
.competition-copy > p:not(.competition-year) { min-height: 58px; margin-bottom: 24px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.competition-score { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.competition-score > div { padding: 14px 8px 13px; text-align: center; }
.competition-score > div + div { border-left: 1px solid var(--soft-line); }
.competition-score dt { margin-bottom: 2px; color: var(--muted); font-size: 12px; letter-spacing: .1em; }
.competition-score dd { color: var(--green-dark); font: 600 20px/1.4 Georgia, "Times New Roman", serif; }
.nutrition-section {
  padding: clamp(62px, 7.2vw, 102px) clamp(22px, 6vw, 96px);
  color: var(--ink);
}
.nutrition-layout { display: grid; gap: clamp(38px, 5vw, 58px); max-width: 900px; margin: auto; }
.nutrition-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.nutrition-intro .eyebrow { color: var(--olive); }
.nutrition-intro h2 { color: var(--green-dark); font-size: clamp(35px, 4.3vw, 56px); line-height: 1.4; }
.nutrition-intro > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 2; }
.nutrition-note { display: inline-flex; align-items: center; gap: 17px; margin-top: 22px; padding: 18px 24px; border: 1px solid var(--line); background: rgba(255,253,247,.58); text-align: left; }
.nutrition-note > span { display: grid; place-items: center; flex: 0 0 62px; width: 62px; height: 62px; border: 1px solid var(--gold); border-radius: 50%; color: #987c3f; font: 600 19px/1 Georgia, "Times New Roman", serif; }
.nutrition-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.nutrition-note strong { color: var(--green-dark); font-size: 16px; letter-spacing: .08em; }
.nutrition-panel { width: 100%; padding: clamp(25px, 3.4vw, 42px); color: #44412f; background: #fffdf7; box-shadow: 14px 18px 0 rgba(137,144,82,.11); }
.nutrition-panel-header { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 24px; padding-bottom: 19px; border-bottom: 3px solid #405f4c; }
.nutrition-panel-header > p { margin: 0; padding: 8px 17px; color: #fffdf7; background: #405f4c; font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; line-height: 1.25; letter-spacing: .14em; }
.nutrition-panel-header div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 3px 20px; color: #66604b; font-size: 14px; line-height: 1.6; }
.nutrition-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.nutrition-table th, .nutrition-table td { padding: 12px 8px; border-bottom: 1px solid rgba(64,95,76,.18); }
.nutrition-table thead th { color: #52604a; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-align: right; }
.nutrition-table thead th:first-child { text-align: left; }
.nutrition-table tbody th { color: #3f432f; font-size: 15px; font-weight: 600; letter-spacing: .06em; text-align: left; }
.nutrition-table tbody td { color: #55513e; font-family: Georgia, "Times New Roman", serif; font-size: 16px; text-align: right; white-space: nowrap; }
.nutrition-table .nutrition-subitem th { padding-left: 25px; color: #6b6858; font-size: 14px; font-weight: 500; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.specs-section { padding-top: clamp(58px, 7.2vw, 96px); padding-bottom: 0; }
.process-story {
  display: grid;
  gap: clamp(38px, 6vw, 82px);
  max-width: 1320px;
  margin: 0 auto clamp(58px, 7.2vw, 101px);
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.8), transparent 16rem),
    rgba(255,250,239,.68);
  box-shadow: 12px 16px 0 rgba(149,136,86,.07);
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 22px;
  width: 1px;
  background: linear-gradient(transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  opacity: .48;
}
.process-step:nth-child(even) { grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); }
.process-step:nth-child(even)::before { right: 22px; left: auto; }
.process-step:nth-child(even) .process-copy { order: 2; }
.process-step:nth-child(even) .process-media { order: 1; }
.process-step--portrait {
  grid-template-columns: minmax(340px, 1fr) minmax(310px, .7fr);
  width: min(100%, 1140px);
  margin-inline: auto;
}
.process-copy { padding: clamp(40px, 6vw, 82px); }
.process-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}
.process-label {
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.process-copy h3 {
  margin-bottom: 24px;
  color: #174c3a;
  font-size: clamp(31px, 3.4vw, 49px);
  line-height: 1.42;
  letter-spacing: .08em;
}
.process-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 2.05;
  letter-spacing: .025em;
}
.process-media {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #d9d6c4;
}
.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,250,239,.16);
}
.process-media img,
.process-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.process-step--portrait .process-media,
.process-step--portrait .process-media video { min-height: 620px; }
.process-step--portrait .process-media video { object-position: center; }
.process-media--flowering img { object-position: center; }
.process-media--harvest img { object-position: center 48%; }
.process-media--drying img { object-position: center 54%; }
.process-media--pressing img { object-position: center; }
.process-step--flowering .process-copy { padding-block: clamp(30px, 3vw, 39px); }
.process-step--flowering .process-copy h3 { font-size: clamp(30px, 3vw, 43px); }
.serving-section {
  position: relative;
  overflow: hidden;
  padding: clamp(59px, 6.4vw, 94px) clamp(22px, 6vw, 96px) clamp(64px, 7.2vw, 101px);
  color: var(--ink);
}
.serving-heading { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.serving-heading .eyebrow { color: var(--olive); }
.serving-heading h2 { margin-bottom: 14px; color: var(--green-dark); font-size: clamp(34px, 4.6vw, 66px); letter-spacing: .08em; }
.serving-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: clamp(15px, 1.35vw, 18px); }
.serving-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2.2vw, 34px); max-width: 1380px; margin: auto; }
.serving-item { min-width: 0; padding: 28px 15px 25px; border-top: 1px solid var(--line); background: rgba(255,253,247,.34); text-align: center; }
.serving-icon { display: block; width: 132px; height: 132px; margin: 0 auto 20px; overflow: hidden; border-radius: 50%; }
.serving-icon img { width: 100%; height: 100%; object-fit: cover; }
.serving-en { min-height: 28px; margin-bottom: 2px; color: #9a7b38; font-family: Georgia, "Times New Roman", serif; font-size: 13px; letter-spacing: .05em; }
.serving-item h3 { margin-bottom: 7px; color: var(--green-dark); font-size: clamp(22px, 2.1vw, 30px); letter-spacing: .1em; }
.serving-item > p:last-child { max-width: 190px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.75; }
.product-specification,
.specs-section,
.serving-section,
.nutrition-section {
  background: transparent;
}
.warm-band { background: transparent; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1050px; margin: auto; }
.feature-card, .recipe-grid article, .contact-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255,250,239,.64);
  box-shadow: 7px 8px 0 rgba(149,136,86,.09);
}
.feature-card span, .recipe-grid span, .contact-card > span { color: var(--olive); font-size: 13px; font-weight: 700; letter-spacing: .2em; }
.feature-card p, .recipe-grid p, .contact-card p { margin-bottom: 0; color: var(--muted); }

.recipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: rgba(255,250,239,.7); }
.recipe-grid article { min-height: 300px; padding-top: 110px; }
.recipe-grid article::before {
  content: "";
  position: absolute;
  top: 25px; right: 24px;
  width: 82px; height: 72px;
  background: url("assets/oil-cup-transparent.png") center/contain no-repeat;
  opacity: .82;
}
.recipe-grid article:nth-child(2)::before { background-image: url("assets/flower-fruit-transparent.png"); }
.recipe-grid article:nth-child(3)::before { background-image: url("assets/tea-branch-transparent.png"); }
.recipe-grid article:nth-child(4)::before { background-image: url("assets/fruit-basket-transparent.png"); }
.recipe-grid h2 { font-size: 25px; }
.split-section { display: grid; grid-template-columns: .65fr 1fr; gap: 60px; align-items: start; }
.split-section > p { max-width: 680px; color: var(--muted); font-size: 17px; }

.story-article {
  padding: clamp(48px, 4.7vw, 72px) clamp(22px, 6vw, 96px) clamp(90px, 11vw, 160px);
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 24%, rgba(211, 201, 145, .22), transparent 24rem),
    radial-gradient(circle at 96% 72%, rgba(104, 121, 60, .1), transparent 26rem);
}
.story-article-heading { max-width: 760px; margin: 0 auto clamp(46px, 6vw, 76px); text-align: center; }
.story-article-heading::before { content: "❧"; display: block; margin-bottom: 8px; color: var(--olive); font-size: 28px; }
.story-article-heading h2 { font-size: clamp(34px, 4.4vw, 55px); line-height: 1.45; letter-spacing: .1em; }
.story-prose { width: min(100%, 720px); margin: 0 auto; }
.story-prose p { margin: 0 0 1.8em; color: #514c3e; font-size: clamp(17px, 1.35vw, 20px); line-height: 2.15; letter-spacing: .045em; }
.story-opening { color: var(--green-dark) !important; font-family: "Noto Serif TC", serif; font-size: clamp(23px, 2.2vw, 31px) !important; line-height: 1.7 !important; }
.story-opening::first-letter { color: var(--olive); font-size: 1.75em; }
.story-figure { margin: clamp(48px, 7vw, 92px) auto; }
.story-figure img { display: block; width: 100%; height: 100%; object-fit: cover; box-shadow: 0 28px 65px rgba(54, 54, 33, .16); }
.story-figure figcaption { margin-top: 17px; color: #777260; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75; letter-spacing: .06em; }
.story-figure--portrait { width: min(100%, 850px); display: grid; grid-template-columns: minmax(0, 610px) 1fr; align-items: end; }
.story-figure--portrait img { grid-column: 1; aspect-ratio: 3 / 4; }
.story-figure--portrait figcaption { grid-column: 2; padding: 0 0 15px 25px; writing-mode: vertical-rl; }
.story-figure--wide { width: min(100%, 1120px); }
.story-figure--wide img { aspect-ratio: 16 / 9; object-position: center 44%; }
.story-figure--wide figcaption { max-width: 720px; margin-left: auto; text-align: right; }
.story-pullquote {
  position: relative;
  width: min(100%, 880px);
  margin: clamp(72px, 9vw, 124px) auto;
  padding: clamp(38px, 5vw, 62px) 20px;
  border-block: 1px solid rgba(126, 116, 54, .32);
  color: var(--green-dark);
  font-family: "Noto Serif TC", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.8;
  letter-spacing: .08em;
  text-align: center;
}
.story-pullquote::before { content: "“"; position: absolute; top: 5px; left: 50%; color: rgba(126, 116, 54, .24); font-family: Georgia, serif; font-size: 78px; line-height: 1; transform: translateX(-50%); }
.story-prose--closing { padding-top: clamp(8px, 2vw, 24px); }
.story-ending { margin-top: clamp(38px, 5vw, 62px) !important; color: var(--green-dark) !important; font-family: "Noto Serif TC", serif; font-size: clamp(21px, 2vw, 28px) !important; line-height: 1.9 !important; text-align: center; }
.quote-band { position: relative; overflow: hidden; color: #fffaf0; background: var(--green); }
.quote-band::after { content: ""; position: absolute; right: -30px; bottom: -70px; width: 330px; height: 260px; background: url("assets/tea-branch-transparent.png") center/contain no-repeat; opacity: .22; filter: grayscale(1) brightness(2); }
.quote-band blockquote { max-width: none; font-size: clamp(24px, 3.1vw, 44px); letter-spacing: .04em; white-space: nowrap; }
blockquote { position: relative; z-index: 1; max-width: 980px; margin: auto; font-size: clamp(27px, 3.7vw, 48px); line-height: 1.65; letter-spacing: .08em; text-align: center; }

.news-index-section { max-width: 1260px; margin: 0 auto; padding: clamp(50px, 7vw, 92px) clamp(22px, 5vw, 72px) clamp(72px, 9vw, 120px); }
.news-list { border-top: 1px solid var(--soft-line); }
.news-list-item { display: grid; grid-template-columns: minmax(0, 1fr) 40px; align-items: center; gap: clamp(24px, 4vw, 54px); padding: clamp(28px, 4vw, 48px) 8px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.news-list-item.has-cover { grid-template-columns: clamp(190px, 23vw, 280px) minmax(0, 1fr) 40px; }
.news-list-item:hover { padding-inline: 22px; background: rgba(255,250,239,.56); }
.news-list-cover { align-self: stretch; min-height: 168px; overflow: hidden; background: rgba(137,144,82,.1); }
.news-list-cover img { width: 100%; height: 100%; min-height: 168px; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .45s ease; }
.news-list-item:hover .news-list-cover img { transform: scale(1.035); }
.news-list-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; }
.news-list time, .news-article-meta time, .related-news time { color: #524d39; font-family: Georgia, "Times New Roman", serif; font-size: 16px; font-style: italic; font-weight: 700; letter-spacing: .11em; }
.news-category { display: inline-flex; align-items: center; min-height: 28px; padding: 2px 12px; color: #fffaf0; background: var(--olive); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.news-list-copy h3 { margin-bottom: 10px; font-size: clamp(21px, 2vw, 28px); line-height: 1.45; letter-spacing: .05em; }
.news-list-copy p { max-width: 780px; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.news-list-arrow { align-self: center; color: var(--olive); font-size: 28px; transition: transform .2s ease; }
.news-list-item:hover .news-list-arrow { transform: translateX(5px); }
.news-loading, .news-empty { padding: 42px 8px; color: var(--muted); }
.news-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 42px; }
.news-pagination a, .news-pagination span { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 0 14px; border: 1px solid var(--line); background: rgba(255,250,239,.55); font-size: 14px; }
.news-pagination a:hover, .news-pagination a.is-current { color: #fffaf0; border-color: var(--green); background: var(--green); }
.news-pagination .is-disabled { color: rgba(111,104,76,.46); border-color: var(--soft-line); background: rgba(255,250,239,.28); cursor: not-allowed; }

.news-detail-main { min-height: 65vh; }
.news-detail-shell { max-width: 1320px; margin: 0 auto; padding: clamp(50px, 7vw, 96px) clamp(22px, 5vw, 72px) clamp(80px, 9vw, 128px); }
.news-back { display: inline-flex; align-items: center; gap: 12px; margin-top: clamp(48px, 7vw, 82px); padding-top: 22px; border-top: 1px solid var(--line); color: var(--green); font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.news-back span { font-size: 22px; transition: transform .2s ease; }
.news-back:hover span { transform: translateX(-5px); }
.news-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 330px); gap: clamp(48px, 7vw, 92px); align-items: start; }
.news-article { min-width: 0; padding-right: clamp(0px, 2vw, 28px); }
.news-article-header { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.news-article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 20px; }
.news-article h1 { margin-bottom: 20px; font-size: clamp(32px, 4.6vw, 58px); line-height: 1.35; letter-spacing: .05em; }
.news-article-summary { margin-bottom: 0; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 2; }
.news-article-content { padding-top: clamp(32px, 5vw, 58px); color: var(--ink); font-size: 17px; line-height: 2.05; }
.news-article-content h2 { margin: 1.4em 0 .65em; font-size: clamp(26px, 3vw, 38px); }
.news-article-content h3 { margin: 1.5em 0 .5em; font-size: clamp(21px, 2.2vw, 28px); }
.news-article-content h4 { margin: 1.5em 0 .5em; color: var(--green-dark); font-size: 20px; }
.news-article-content p { margin-bottom: 1.35em; }
.news-article-content figure { margin: 38px 0; }
.news-article-content figure img { width: 100%; max-height: 620px; object-fit: contain; background: rgba(255,250,239,.45); }
.news-article-content blockquote { margin: 34px 0; padding: 20px 28px; border-left: 3px solid var(--olive); color: var(--muted); background: rgba(255,250,239,.5); font-size: 19px; line-height: 1.9; text-align: left; }
.news-article-content a { color: #65702f; text-decoration: underline; text-underline-offset: 4px; }
.news-article-content hr { margin: 42px 0; border: 0; border-top: 1px solid var(--line); }
.news-article-content .text-small { font-size: .8em; }
.news-article-content .text-large { font-size: 1.25em; }
.news-article-content .text-huge { font-size: 1.55em; }
.related-news { position: sticky; top: 130px; padding: 28px 30px; border-top: 3px solid var(--green); background: rgba(255,250,239,.62); box-shadow: 8px 10px 0 rgba(137,144,82,.09); }
.related-news > h2 { margin-bottom: 15px; font-size: 27px; letter-spacing: .08em; }
.related-news-item { display: block; padding: 20px 0; border-top: 1px solid var(--line); }
.related-news-item h3 { margin: 7px 0 0; font-size: 17px; line-height: 1.65; letter-spacing: .04em; transition: color .2s ease; }
.related-news-item:hover h3 { color: var(--olive); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: transparent; }
.contact-card { display: flex; flex-direction: column; min-height: 290px; }
.contact-card h2 { margin-top: 16px; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: .03em; }
.contact-card .button { align-self: flex-start; margin-top: auto; margin-bottom: 8px; }
.contact-line-actions { display: flex; align-items: center; min-height: 44px; margin-top: auto; margin-bottom: 8px; }
.contact-line-button { display: inline-flex; align-items: center; min-height: 44px; line-height: 0; }
.contact-line-button img { width: auto; height: 44px; }
.contact-line-actions a:hover { opacity: .82; }

.site-footer {
  padding: 18px clamp(22px, 6vw, 96px);
  color: #5d563d;
  background: #ded2aa;
  font-size: 22.5px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 140px minmax(310px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 88px;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .05em;
}
.footer-contact { align-self: end; }
.footer-contact address {
  display: grid;
  gap: 7px;
  margin: 0;
  font-style: normal;
  line-height: 1.55;
}
.footer-contact address a {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 34px;
  width: fit-content;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
}
.footer-contact address a:hover { color: var(--green-dark); }
.footer-icon {
  display: flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 30px;
  height: 26px;
  line-height: 1;
}
.footer-icon img { display: block; width: auto; max-width: 26px; height: auto; max-height: 24px; object-fit: contain; }
.footer-contact address a > span:last-child { line-height: 1.25; }
.footer-qr {
  justify-self: center;
  display: block;
  line-height: 0;
  color: inherit;
}
.footer-qr img {
  width: 120px;
  height: 120px;
  padding: 4px;
  border: 1px solid rgba(93,86,61,.2);
  background: #fff;
}
.footer-qr:hover { opacity: .82; }
.footer-legal {
  justify-self: end;
  align-self: end;
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}
.footer-legal > a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal > a:hover { color: var(--green-dark); }
.footer-copyright {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
}

.privacy-content {
  max-width: 980px;
  margin: 0 auto;
}
.privacy-intro {
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 17px;
}
.privacy-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.privacy-section h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .06em;
}
.privacy-section p,
.privacy-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { margin: 12px 0 0; padding-left: 1.5em; }
.to-top { position: fixed; z-index: 40; right: 24px; bottom: 22px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #fffaf0; background: rgba(71,66,39,.82); font-size: 18px; }

@media (max-width: 1120px) {
  .product-spec-layout { grid-template-columns: 1fr; gap: 58px; max-width: 760px; }
  .product-bottles { min-height: 625px; }
  .product-bottle--250 img { height: 480px; }
  .product-bottle--500 img { height: 595px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 205px 1fr; }
  .brand-mark { gap: 10px; }
  .brand-name { font-size: 19px; letter-spacing: .06em; }
  .header-phone { display: none; }
  .main-nav { justify-content: flex-end; gap: 20px; overflow-x: auto; }
  .home-hero { min-height: 590px; }
  .hero-slide { grid-template-columns: minmax(330px, .9fr) 1.3fr; }
  .home-hero-copy { padding-inline: 42px; }
  .hero-visual { left: 39%; }
  .home-product-showcase { min-height: 720px; }
  .product-showcase-copy { right: 4px; width: 82%; padding: 26px; }
  .product-showcase-copy h2 { font-size: 36px; }
  .product-award-highlight { gap: 10px; }
  .award-medal-icon { width: 40px; height: 53px; }
  .product-award-highlight span { padding-right: 10px; font-size: 13px; }
  .product-award-highlight span b { font-size: 16px; }
  .product-award-highlight strong { font-size: 20px; }
  .product-showcase-lead { font-size: 15px; line-height: 1.75; }
  .product-highlights li { grid-template-columns: 38px 1fr; gap: 8px; padding: 9px 0; }
  .product-highlight-icon { width: 34px; height: 34px; }
  .product-highlights p { font-size: 14px; }
  .recipe-grid { grid-template-columns: 1fr 1fr; }
  .process-step,
  .process-step--portrait { grid-template-columns: minmax(270px, .88fr) minmax(0, 1.12fr); }
  .process-step:nth-child(even) { grid-template-columns: minmax(0, 1.12fr) minmax(270px, .88fr); }
  .process-copy { padding: 40px; }
  .process-media,
  .process-media img,
  .process-media video { min-height: 460px; }
  .process-step--portrait .process-media,
  .process-step--portrait .process-media video { min-height: 560px; }
  .serving-grid { grid-template-columns: repeat(6, 1fr); gap: 42px 24px; max-width: 720px; }
  .nutrition-layout { max-width: 760px; }
  .serving-item { grid-column: span 2; }
  .serving-item:nth-child(4) { grid-column: 2 / 4; }
  .serving-item:nth-child(5) { grid-column: 4 / 6; }
  .news-detail-layout { grid-template-columns: minmax(0, 1fr) 270px; gap: 42px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: minmax(220px, 1fr) 130px minmax(250px, 1fr); gap: 20px; }
  .footer-legal > a, .footer-copyright { font-size: 18px; }
}

@media (max-width: 700px) {
  .site-header { display: flex; min-height: 72px; padding: 6px 16px; }
  .brand-mark { gap: 9px; width: auto; height: 60px; }
  .brand-mark img { height: 60px; }
  .brand-name { font-size: 18px; letter-spacing: .07em; }
  .nav-toggle { display: block; margin-left: auto; padding: 10px 0 10px 18px; border: 0; color: var(--green-dark); background: transparent; font-family: "Noto Serif TC", serif; font-size: 14px; font-weight: 700; line-height: 1; letter-spacing: .12em; }
  .main-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    display: none;
    padding: 15px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,251,239,.98);
    box-shadow: 0 14px 26px rgba(73,62,34,.1);
  }
  .main-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .main-nav a { text-align: center; }
  .home-hero {
    width: calc(100% - 24px);
    min-height: 680px;
    margin: 18px auto 56px;
  }
  .hero-slide { grid-template-columns: 1fr; grid-template-rows: 370px 310px; }
  .home-hero-copy {
    grid-row: 1;
    justify-content: flex-start;
    padding: 34px 30px 26px;
  }
  .home-hero .eyebrow { margin-bottom: 8px; font-size: 10px; line-height: 1.8; letter-spacing: .18em; }
  .home-hero h1, .home-hero h2 { margin-bottom: 14px; font-size: clamp(32px, 9vw, 42px); line-height: 1.38; letter-spacing: .05em; }
  .hero-description { margin-bottom: 20px; font-size: 14px; line-height: 1.8; }
  .hero-button { min-width: 158px; min-height: 44px; }
  .hero-visual { inset: 370px 0 0; }
  .hero-visual-award-114 { background-position: 51% center; }
  .hero-visual-award-113 { background-position: 52% center; }
  .hero-visual-origin { background-position: 50% center; }
  .hero-arrow {
    top: 75%;
    width: 38px;
    height: 52px;
    border-color: rgba(255,250,239,.42);
    border-radius: 0;
    color: #fffaf0;
    background: rgba(48,55,24,.48);
    box-shadow: none;
    font-size: 34px;
  }
  .hero-arrow:hover { background: rgba(48,55,24,.78); transform: translateY(-50%); }
  .hero-prev { left: 0; border-left: 0; }
  .hero-next { right: 0; border-right: 0; }
  .hero-pagination { bottom: 14px; }
  .home-story-strip, .page-hero, .feature-grid, .split-section { grid-template-columns: 1fr; }
  .home-product-showcase { width: calc(100% - 24px); min-height: 0; background: rgba(255,250,239,.82); }
  .home-product-showcase > img { position: static; aspect-ratio: 1.42; object-fit: cover; object-position: left center; }
  .product-showcase-copy { position: static; width: auto; padding: 38px 28px 42px; transform: none; }
  .product-showcase-copy h2 { font-size: clamp(31px, 9vw, 42px); letter-spacing: .04em; }
  .product-award-highlight { display: grid; grid-template-columns: 52px 1fr; gap: 2px 12px; margin-bottom: 20px; }
  .award-medal-icon { grid-row: 1 / 3; width: 48px; height: 64px; }
  .product-award-highlight span { padding-right: 0; border-right: 0; font-size: 14px; }
  .product-award-highlight span b { font-size: 17px; }
  .product-award-highlight strong { font-size: 22px; }
  .product-showcase-lead { font-size: 17px; }
  .product-highlights { margin-bottom: 26px; }
  .product-highlights li { grid-template-columns: 46px 1fr; gap: 10px; padding: 13px 0; }
  .product-highlight-icon { width: 40px; height: 40px; }
  .product-highlights p { font-size: 16px; }
  .product-sizes { display: grid; gap: 8px; }
  .product-sizes span { padding-right: 0; border-right: 0; }
  .home-story-strip {
    background:
      linear-gradient(rgba(249,242,219,.86), rgba(249,242,219,.6)),
      url("assets/home-story-orchard.jpg") 38% center / cover no-repeat;
  }
  .story-strip-copy { padding-left: 0; }
  .story-mini-cards { grid-template-columns: 1fr; justify-items: center; gap: 22px; }
  .story-mini-cards article { width: min(100%, 340px); }
  .page-hero { height: 240px; min-height: 240px; padding: 22px 20px 20px; }
  .page-hero h1 { font-size: clamp(31px, 8vw, 38px); }
  .page-hero .lead { font-size: 14px; line-height: 1.65; }
  .page-hero > img { max-height: 150px; }
  .simple-hero, .story-hero, .contact-hero { height: 240px; min-height: 240px; padding-right: 20px; padding-bottom: 20px; }
  .product-hero { position: relative; display: block; }
  .product-hero > div { width: 68%; }
  .product-hero h1 { margin-bottom: 5px; font-size: 31px; line-height: 1.08; }
  .product-hero .lead { font-size: 13px; line-height: 1.45; }
  .product-hero .actions { margin-top: 8px; }
  .product-hero .button { min-height: 38px; padding-inline: 18px; font-size: 13px; }
  .product-hero > img { position: absolute; right: 8px; bottom: 0; max-height: 150px; opacity: .9; }
  .product-specification { padding: 50px 18px 58px; }
  .product-spec-layout { grid-template-columns: 1fr; gap: 54px; }
  .product-bottles { min-height: 510px; gap: 0; padding-inline: 0; }
  .product-bottle { width: 50%; }
  .product-bottle--250 img { height: 355px; }
  .product-bottle--500 img { height: 445px; }
  .product-size-strip { min-height: 51px; margin-top: 18px; padding: 4px; }
  .product-size-strip > div { gap: 6px; padding: 0 6px; }
  .product-size-strip svg { width: 11px; height: 25px; }
  .product-size-strip strong { font-size: 22px; }
  .product-size-strip p > span { font-size: 11px; }
  .product-information { border-radius: 13px; }
  .product-information-header { grid-template-columns: 52px 1fr; gap: 13px; padding: 24px 20px 21px; }
  .information-mark { width: 48px; height: 48px; }
  .information-mark svg { width: 30px; height: 30px; }
  .product-information-header h2 { font-size: 22px; }
  .product-information-header p { font-size: 14px; line-height: 1.75; }
  .product-detail-list { margin-inline: 20px; }
  .product-detail-list > div { grid-template-columns: 112px 1fr; min-height: 58px; }
  .product-detail-list dt { gap: 10px; padding: 12px 10px 12px 3px; font-size: 17px; }
  .detail-icon { flex-basis: 24px; width: 24px; height: 24px; }
  .detail-icon svg { width: 22px; height: 22px; }
  .product-detail-list dd { padding: 11px 13px; font-size: 18px; }
  .product-features { margin: 24px 20px 20px; }
  .product-features ul { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-features li { min-height: 195px; padding: 16px 9px 13px; }
  .product-features li > svg { width: 34px; height: 34px; }
  .product-features strong { font-size: 20px; }
  .product-features span { font-size: 16px; }
  .product-features small { font-size: 15px; }
  .product-assurance { grid-template-columns: 1fr; gap: 7px; padding: 12px 18px; font-size: 13px; }
  .product-assurance span { min-height: 44px; }
  .competition-section { padding: 54px 18px 62px; }
  .competition-heading { margin-bottom: 38px; }
  .competition-heading h2 { font-size: clamp(31px, 9vw, 42px); line-height: 1.45; letter-spacing: .06em; }
  .competition-heading > p:last-child { font-size: 14px; line-height: 1.9; }
  .competition-grid { grid-template-columns: 1fr; gap: 30px; }
  .competition-copy { padding: 26px 22px 29px; }
  .competition-title-row { gap: 13px; }
  .competition-title-row img { width: 46px; }
  .competition-copy > p:not(.competition-year) { min-height: 0; font-size: 14px; }
  .competition-score > div { padding-inline: 4px; }
  .competition-score dd { font-size: 17px; }
  .nutrition-section { padding: 54px 18px 66px; }
  .nutrition-layout { gap: 40px; }
  .nutrition-intro h2 { font-size: clamp(31px, 9vw, 42px); }
  .nutrition-intro > p:not(.eyebrow) { font-size: 14px; }
  .nutrition-note { margin-top: 20px; padding: 15px 18px; }
  .nutrition-panel { width: calc(100% + 8px); margin-left: -4px; padding: 22px 14px 18px; box-shadow: 8px 10px 0 rgba(137,144,82,.12); }
  .nutrition-panel-header { grid-template-columns: 1fr; align-items: start; gap: 13px; }
  .nutrition-panel-header > p { justify-self: start; font-size: 20px; }
  .nutrition-panel-header div { justify-content: flex-start; gap: 1px 14px; font-size: 12px; }
  .nutrition-table th, .nutrition-table td { padding: 10px 4px; }
  .nutrition-table thead th { font-size: 11px; letter-spacing: 0; }
  .nutrition-table tbody th { font-size: 13px; letter-spacing: .02em; }
  .nutrition-table tbody td { font-size: 13px; }
  .nutrition-table .nutrition-subitem th { padding-left: 15px; font-size: 12px; }
  .specs-section { padding-inline: 16px; }
  .process-story { gap: 28px; margin-bottom: 58px; }
  .process-step,
  .process-step--portrait,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: 7px 9px 0 rgba(149,136,86,.07);
  }
  .process-step::before,
  .process-step:nth-child(even)::before { inset: 16px 16px auto; width: auto; height: 1px; }
  .process-step:nth-child(even) .process-copy,
  .process-step:nth-child(even) .process-media { order: initial; }
  .process-copy { padding: 42px 28px 36px; }
  .process-number { width: 40px; height: 40px; margin-bottom: 17px; }
  .process-label { font-size: 10px; letter-spacing: .2em; }
  .process-copy h3 { margin-bottom: 17px; font-size: clamp(29px, 9vw, 40px); }
  .process-copy > p:last-child { font-size: 15px; line-height: 1.95; }
  .process-media,
  .process-media img,
  .process-media video { min-height: 0; aspect-ratio: 4 / 3; }
  .process-step--portrait .process-media,
  .process-step--portrait .process-media video { min-height: 0; aspect-ratio: 4 / 5; }
  .process-step--flowering .process-copy { padding: 42px 28px 36px; }
  .process-step--flowering .process-copy h3 { font-size: clamp(29px, 9vw, 40px); }
  .serving-section { padding: 53px 18px 62px; }
  .serving-heading { margin-bottom: 42px; }
  .serving-heading h2 { font-size: clamp(31px, 9vw, 43px); line-height: 1.45; letter-spacing: .05em; }
  .serving-heading > p:last-child { font-size: 14px; line-height: 1.85; }
  .serving-grid { grid-template-columns: 1fr 1fr; gap: 38px 14px; }
  .serving-item { grid-column: auto; }
  .serving-item:nth-child(4) { grid-column: auto; }
  .serving-item:nth-child(5) { grid-column: 1 / -1; width: 50%; justify-self: center; }
  .serving-icon { width: 104px; height: 104px; margin-bottom: 14px; }
  .serving-en { min-height: 24px; font-size: 12px; }
  .serving-item h3 { font-size: 22px; }
  .serving-item > p:last-child { font-size: 12px; }
  .recipe-grid { grid-template-columns: 1fr; }
  .story-article { padding-inline: 22px; }
  .story-article-heading { text-align: left; }
  .story-article-heading::before { text-align: center; }
  .story-prose p { line-height: 2; letter-spacing: .025em; }
  .story-figure--portrait { width: calc(100% + 22px); margin-right: -22px; grid-template-columns: 1fr; }
  .story-figure--portrait img { grid-column: 1; }
  .story-figure--portrait figcaption { grid-column: 1; padding: 0 22px 0 0; writing-mode: horizontal-tb; }
  .story-figure--wide { width: calc(100% + 44px); margin-left: -22px; }
  .story-figure--wide img { aspect-ratio: 4 / 3; }
  .story-figure--wide figcaption { padding: 0 22px; text-align: left; }
  .story-pullquote br { display: none; }
  .quote-band { padding-inline: 12px; }
  .quote-band blockquote { font-size: clamp(14px, 3.6vw, 18px); letter-spacing: .01em; }
  .news-list-item { grid-template-columns: 1fr 28px; gap: 13px; padding: 27px 4px; }
  .news-list-item.has-cover { grid-template-columns: 112px minmax(0, 1fr); align-items: start; gap: 18px; }
  .news-list-item.has-cover .news-list-cover { min-height: 112px; }
  .news-list-item.has-cover .news-list-cover img { min-height: 112px; aspect-ratio: 1; }
  .news-list-item.has-cover .news-list-arrow { display: none; }
  .news-list-meta { margin-bottom: 9px; }
  .news-list-item.has-cover .news-list-meta { gap: 7px; }
  .news-list-item.has-cover .news-list-meta time { font-size: 13px; }
  .news-list-item.has-cover .news-category { min-height: 24px; padding-inline: 8px; font-size: 10px; }
  .news-list-item.has-cover .news-list-copy h3 { font-size: 19px; }
  .news-list-item.has-cover .news-list-copy p { display: none; }
  .news-list-copy p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .news-list-arrow { grid-column: 2; grid-row: 1; }
  .news-detail-layout { grid-template-columns: 1fr; }
  .news-article { padding-right: 0; }
  .news-article h1 { font-size: clamp(30px, 9vw, 42px); }
  .news-article-content { font-size: 16px; }
  .related-news { position: static; padding: 24px; }
  .site-footer { padding: 20px 24px 64px; }
  .footer-inner { grid-template-columns: minmax(0, 1fr) 120px; justify-items: start; gap: 16px 20px; }
  .footer-contact { width: 100%; text-align: center; }
  .footer-brand { margin-bottom: 7px; font-size: 19px; }
  .footer-contact address { justify-items: start; width: fit-content; margin: 0 auto; }
  .footer-contact address a { font-size: 17px; }
  .footer-qr { grid-column: 2; grid-row: 1; align-self: center; }
  .footer-qr img { width: 104px; height: 104px; }
  .footer-legal { grid-column: 1 / -1; justify-self: center; align-self: center; justify-items: center; max-width: 330px; line-height: 1.6; text-align: center; }
  .privacy-intro { margin-bottom: 30px; font-size: 15px; }
  .privacy-section { padding: 26px 0; }
  .privacy-section p, .privacy-section li { font-size: 14px; line-height: 1.9; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
