:root {
  color-scheme: light;
  --bg: #fbf7f2;
  --panel: #ffffff;
  --surface: #ffffff;
  --surface-tint: #f6ece5;
  --text: #241e1b;
  --muted: #7a6f66;
  --line: #e7dccf;
  --accent: #a5483d;
  --accent-dark: #7f3028;
  --blush: #f3d9d0;
  --plum: #5e3a4a;
  --gold: #c58a4e;
  --on-dark: #fbf2ee;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-soft: 0 18px 50px rgba(94, 58, 74, 0.1);
  --shadow-lift: 0 28px 80px rgba(94, 58, 74, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  text-decoration: none;
}

.text-brand {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand img {
  display: block;
  height: 44px;
  max-width: min(210px, 52vw);
  object-fit: contain;
}

.independent-header {
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 18px;
}

.logo-brand {
  min-height: clamp(128px, 16vw, 190px);
}

.logo-brand img {
  height: clamp(128px, 16vw, 190px);
  max-width: min(360px, 76vw);
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.page-shell,
.article-shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(40px, 7vw, 84px) clamp(20px, 5vw, 72px);
}

.hub-page .page-shell {
  max-width: 1180px;
}

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

.hero {
  max-width: 760px;
}

.hero.compact {
  max-width: 680px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

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

h1 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 1.18;
  margin-bottom: 22px;
  text-wrap: balance;
}

h2 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.28;
  text-wrap: balance;
}

.lead,
.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(127, 48, 40, 0.22);
}

.section-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(42px, 7vw, 84px);
}

.section-grid article,
.notice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.section-grid a {
  color: var(--accent);
  font-weight: 700;
}

.hub-grid {
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.hub-card {
  background: var(--surface-tint);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 32px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.hub-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.hub-card:nth-child(2) {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hub-card .card-link {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  gap: 6px;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hub-card .card-link::after {
  content: "→";
}

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

.list-item {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  text-decoration: none;
}

.list-item span {
  font-weight: 700;
}

.list-item small {
  color: var(--muted);
}

.hub-list .list-item {
  background: var(--surface-tint);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3vw, 28px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.hub-list .list-item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.article section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}

.article .notice {
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .site-header,
  .list-item {
    align-items: flex-start;
    flex-direction: column;
  }

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

.lazy-pack-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34rem),
    var(--bg);
}

.pack-hero {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 72px);
  position: relative;
}

.pack-hero::before {
  background: linear-gradient(135deg, rgba(165, 72, 61, 0.14), rgba(255, 246, 244, 0));
  border: 1px solid rgba(165, 72, 61, 0.08);
  border-radius: 999px;
  content: "";
  height: clamp(180px, 28vw, 340px);
  position: absolute;
  right: clamp(12px, 7vw, 96px);
  top: clamp(34px, 6vw, 76px);
  width: clamp(180px, 28vw, 340px);
  z-index: -1;
}

.pack-hero__content {
  animation: heroRise 760ms ease both;
  max-width: 760px;
}

.pack-hero h1 {
  max-width: 8.5em;
}

.pack-hero__content > p:not(.eyebrow) {
  max-width: 62ch;
}

.pack-hero__visual {
  animation: panelFloatIn 880ms ease 130ms both;
  align-self: end;
  display: grid;
  gap: 16px;
}

.pack-hero__visual > img,
.image-band img,
.section-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pack-hero__visual > img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(73, 47, 39, 0.1);
}

.pack-hero__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(73, 47, 39, 0.1);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.pack-hero__panel > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: clamp(22px, 4vw, 36px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.pack-hero__panel > div:last-child {
  border-bottom: 0;
}

.pack-hero__panel > div:hover {
  background: #fff6f4;
  transform: translateX(-3px);
}

.stat-number {
  color: var(--accent);
  font-size: clamp(3rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 0.95;
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
}

.pack-intro,
.pack-section,
.safety-note {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.pack-intro {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(34px, 5vw, 68px);
}

.pack-intro article,
.score-card,
.treatment-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 32px);
}

.tick-list,
.number-list,
.signal-grid ul,
.treatment-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.tick-list li,
.number-list li,
.signal-grid li,
.treatment-card li {
  margin: 0.45rem 0;
}

.pack-section {
  padding-bottom: clamp(48px, 7vw, 96px);
  padding-top: clamp(48px, 7vw, 96px);
}

.pack-section + .pack-section {
  border-top: 1px solid var(--line);
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.section-copy {
  position: sticky;
  top: 24px;
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 44px);
  max-width: 760px;
}

.score-card,
.challenge-list {
  display: grid;
  gap: 12px;
}

.score-card label,
.challenge-list label {
  align-items: flex-start;
  background: #fffaf9;
  border: 1px solid rgba(165, 72, 61, 0.16);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.score-card label:hover,
.challenge-list label:hover {
  background: #fff;
  border-color: rgba(165, 72, 61, 0.32);
  transform: translateY(-2px);
}

.score-card input,
.challenge-list input {
  accent-color: var(--accent);
  flex: 0 0 auto;
  margin-top: 0.38em;
}

.score-result,
.progress-box {
  background: #302b27;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 18px;
}

.score-result span,
.progress-box span {
  color: #f4b6aa;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.score-result strong {
  font-size: 1rem;
}

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

.signal-grid details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.signal-grid details[open] {
  border-color: rgba(165, 72, 61, 0.38);
  box-shadow: 0 18px 50px rgba(73, 47, 39, 0.08);
}

.signal-grid details:hover {
  transform: translateY(-2px);
}

.signal-grid summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.signal-grid p {
  color: var(--muted);
  margin: 14px 0 10px;
}

.image-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(48px, 7vw, 96px);
}

.image-band img {
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(73, 47, 39, 0.09);
}

.section-photo {
  margin: 24px 0 0;
}

.section-photo img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.challenge-list span {
  color: var(--accent);
  flex: 0 0 56px;
  font-weight: 700;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.progress-bar span {
  background: #f4b6aa;
  display: block;
  height: 100%;
  transition: width 320ms ease;
  width: 0;
}

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

.detail-row article {
  background: var(--panel);
  border: 1px solid var(--line);
  margin-left: -1px;
  padding: 22px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.detail-row article:hover {
  background: #fff6f4;
  transform: translateY(-3px);
}

.detail-row h3,
.treatment-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.detail-row p,
.treatment-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.care-section {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
}

.treatment-card {
  background: #fff6f4;
  border-color: rgba(165, 72, 61, 0.24);
  position: relative;
  overflow: hidden;
}

.treatment-card::after {
  animation: softSweep 4.6s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  height: 150%;
  left: -65%;
  position: absolute;
  top: -25%;
  transform: rotate(18deg);
  width: 42%;
}

.price {
  color: var(--accent) !important;
  font-weight: 700;
  margin-bottom: 18px !important;
}

.cta-band {
  background: #302b27;
  color: #fff;
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 72px), calc((100vw - 1180px) / 2 + clamp(20px, 5vw, 72px)));
  padding-right: max(clamp(20px, 5vw, 72px), calc((100vw - 1180px) / 2 + clamp(20px, 5vw, 72px)));
}

.cta-band .eyebrow,
.cta-band .button:not(.primary) {
  color: #f4b6aa;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}

.cta-band blockquote {
  border-left: 3px solid #f4b6aa;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 24px 0 0;
  max-width: 760px;
  padding-left: 18px;
}

.safety-note {
  color: var(--muted);
  padding-bottom: clamp(38px, 6vw, 80px);
  padding-top: clamp(34px, 5vw, 64px);
}

.safety-note h2 {
  color: var(--text);
  font-size: 1.35rem;
}

.safety-note a {
  color: var(--accent);
  font-weight: 700;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloatIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softSweep {
  0%,
  54% {
    transform: translateX(0) rotate(18deg);
  }
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@media (max-width: 900px) {
  .pack-hero,
  .pack-intro,
  .split-section,
  .care-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .pack-hero__visual {
    align-self: stretch;
  }

  .detail-row,
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pack-hero {
    padding-top: 34px;
  }

  .pack-hero h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .score-card label,
  .challenge-list label {
    padding: 13px;
  }

  .image-band img {
    aspect-ratio: 4 / 3;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(243, 217, 208, 0.48), transparent 22rem),
    radial-gradient(circle at 92% 18rem, rgba(197, 138, 78, 0.14), transparent 20rem),
    var(--bg);
  font-variant-numeric: tabular-nums;
}

body::before {
  background-image:
    linear-gradient(rgba(94, 58, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 58, 74, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

:focus-visible {
  border-radius: var(--r-sm);
  outline: 3px solid rgba(165, 72, 61, 0.45);
  outline-offset: 4px;
}

.skip-link {
  background: var(--accent-dark);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  color: var(--on-dark);
  font-weight: 700;
  left: clamp(16px, 4vw, 48px);
  padding: 10px 14px;
  position: fixed;
  text-decoration: none;
  top: 0;
  transform: translateY(-120%);
  transition: transform 180ms ease;
  z-index: 40;
}

.skip-link:focus {
  transform: translateY(0);
}

.lazy-header {
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 242, 0.84);
  border-bottom-color: rgba(231, 220, 207, 0.8);
  box-shadow: 0 10px 36px rgba(94, 58, 74, 0.06);
  gap: 18px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.lazy-header .logo-brand {
  min-height: 64px;
}

.lazy-header .logo-brand img {
  height: 64px;
  max-width: 156px;
}

.header-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(231, 220, 207, 0.74);
  border-radius: 999px;
  display: flex;
  gap: 4px;
  padding: 5px;
}

.header-nav a,
.header-cta {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-nav a:hover {
  background: var(--surface-tint);
  color: var(--text);
}

.header-cta {
  background: var(--plum);
  color: var(--on-dark);
  justify-content: center;
  min-width: 112px;
}

.header-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button:hover {
  border-color: rgba(165, 72, 61, 0.42);
  transform: translateY(-2px);
}

.button:active,
.header-cta:active,
.header-nav a:active,
.text-action:active,
.mobile-sticky-cta:active {
  transform: translateY(1px) scale(0.99);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.pack-hero {
  padding-top: clamp(58px, 8vw, 112px);
}

.pack-hero::before {
  content: none;
}

.pack-hero__content {
  align-self: center;
}

.pack-hero__visual > img {
  border: 0;
  border-radius: var(--r-lg) var(--r-lg) var(--r-sm) var(--r-lg);
  box-shadow: var(--shadow-lift);
}

.pack-hero__panel {
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  margin-left: clamp(0px, 4vw, 54px);
  margin-top: -46px;
  position: relative;
}

.pack-hero__panel > div {
  border-bottom-color: rgba(231, 220, 207, 0.86);
  padding: clamp(18px, 3vw, 30px);
}

.stat-number {
  color: var(--accent-dark);
  font-family: "Noto Serif TC", serif;
}

.pack-intro article,
.score-card,
.treatment-card {
  background: var(--surface-tint);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: none;
}

.pack-intro article:nth-child(2) {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.score-card label,
.challenge-list label {
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: var(--r-md);
  min-height: 52px;
  padding: 15px 16px;
}

.score-card label:hover,
.challenge-list label:hover {
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(94, 58, 74, 0.08);
}

.score-result,
.progress-box,
.cta-band {
  background:
    radial-gradient(circle at top right, rgba(243, 217, 208, 0.18), transparent 16rem),
    var(--plum);
  color: var(--on-dark);
}

.score-result,
.progress-box {
  border-radius: var(--r-lg);
}

.progress-box.is-complete {
  background:
    radial-gradient(circle at top right, rgba(197, 138, 78, 0.36), transparent 16rem),
    linear-gradient(135deg, var(--plum), var(--accent-dark));
}

.score-result span,
.progress-box span,
.cta-band .eyebrow,
.cta-band .button:not(.primary) {
  color: var(--blush);
}

.signal-grid {
  counter-reset: signal;
}

.signal-grid details {
  background: var(--surface);
  border: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(231, 220, 207, 0.9);
  counter-increment: signal;
  padding: 20px;
}

.signal-grid details[open] {
  box-shadow: var(--shadow-soft);
}

.signal-grid summary {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  list-style: none;
}

.signal-grid summary::-webkit-details-marker {
  display: none;
}

.signal-grid summary::before {
  align-items: center;
  background: var(--blush);
  border-radius: 999px;
  color: var(--accent-dark);
  content: counter(signal);
  display: inline-flex;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.signal-grid summary::after {
  color: var(--gold);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.signal-grid details[open] summary::after {
  transform: rotate(45deg);
}

.image-band img {
  border-radius: var(--r-sm) var(--r-lg) var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lift);
}

.image-band figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 14px 0 0;
  max-width: 58ch;
}

.detail-row {
  gap: 14px;
}

.detail-row article {
  border: 0;
  border-radius: var(--r-md);
  margin-left: 0;
}

.detail-row article:nth-child(odd) {
  background: var(--surface-tint);
}

.detail-row article:nth-child(even) {
  background: var(--surface);
}

.detail-row h3 {
  align-items: center;
  display: flex;
  gap: 10px;
}

.detail-row h3::before {
  align-items: center;
  background: var(--plum);
  border-radius: var(--r-sm);
  color: var(--on-dark);
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 0.9rem;
  height: 34px;
  justify-content: center;
}

.detail-row article:nth-child(1) h3::before {
  content: "久";
}

.detail-row article:nth-child(2) h3::before {
  content: "暖";
}

.detail-row article:nth-child(3) h3::before {
  content: "凍";
}

.detail-row article:nth-child(4) h3::before {
  content: "息";
}

.treatment-card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.treatment-card::after {
  display: none;
}

.price {
  color: var(--accent-dark) !important;
  font-family: "Noto Serif TC", serif;
}

.copy-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(251, 242, 238, 0.24);
  border-radius: var(--r-lg);
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  max-width: 760px;
  padding: clamp(18px, 4vw, 28px);
}

.copy-card p {
  color: var(--on-dark);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  margin: 0;
}

.copy-button {
  background: var(--on-dark);
  border-color: transparent;
  color: var(--plum);
  justify-self: start;
}

.copy-status {
  color: var(--blush);
  font-size: 0.94rem;
  min-height: 1.4em;
}

.text-action {
  background: transparent;
  border: 0;
  color: var(--blush);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  justify-self: start;
  min-height: 44px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--surface-tint);
  color: var(--muted);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(220px, 1.1fr) minmax(220px, 0.9fr) minmax(220px, 1fr);
  padding: clamp(40px, 7vw, 78px) clamp(20px, 5vw, 72px);
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer-brand img {
  display: block;
  height: 92px;
  object-fit: contain;
  width: 170px;
}

.footer-brand p {
  color: var(--accent-dark);
  font-weight: 700;
  margin: 8px 0 0;
}

.site-footer address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
}

.mobile-sticky-cta {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  bottom: 14px;
  box-shadow: 0 16px 38px rgba(127, 48, 40, 0.28);
  color: #fff;
  display: none;
  font-weight: 700;
  justify-content: center;
  left: 16px;
  min-height: 52px;
  padding: 0 20px;
  position: fixed;
  right: 16px;
  text-decoration: none;
  z-index: 30;
}

@media (max-width: 1020px) {
  .header-nav {
    gap: 0;
  }

  .header-nav a {
    padding-left: 10px;
    padding-right: 10px;
  }

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

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

@media (max-width: 720px) {
  .lazy-header {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .lazy-header .logo-brand {
    min-height: 58px;
  }

  .lazy-header .logo-brand img {
    height: 58px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .pack-hero__panel {
    margin-left: 0;
  }

  .cta-band {
    padding-bottom: 92px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .pack-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .actions,
  .button,
  .copy-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
