:root {
  --paper: #f5efe6;
  --paper-deep: #e9dfd0;
  --ink: #373a34;
  --soft-ink: #686b64;
  --teal: #063f40;
  --teal-2: #0f5658;
  --teal-pale: #e4f1ee;
  --orange: #ef6d2f;
  --rule: rgba(55, 58, 52, 0.16);
  --white: #fffdf8;
  --hero-ivory: #f5f1e8;
  --hero-ink: #173f3b;
  --sage: #aebcaf;
  --mist-gold: #b5965d;
  --beurer-pink: #C50050; /* 校正為官方 beurer PANTONE P207C／RGB(197,0,80) 色值，原為 #c80055 */

  /* 字體系統：全站只用兩套
     serif = 自架子集 webfont（見下方 @font-face），僅用於標題／大數字／價格
     sans  = 系統字型，Mac 走 PingFang TC、Windows 走微軟正黑體，不另外載入 */
  --font-serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;  /* 標題、大數字、價格 */
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif; /* 內文、權益、功能點、CTA */
}

/* ------------------------------------------------------------------
   中文標題字：Noto Serif TC 700 自架子集（約 25KB）
   授權：SIL Open Font License 1.1（Google Noto CJK），允許子集化與自架

   ⚠️ 維護重點：子集內只含「本頁標題目前實際用到的 53 個中文字」。
   若日後修改 h1／h2／大數字／價格文案並出現新的字，該字會掉回系統字型
   造成同一行兩種字型混排。改完標題文案請重跑：
       bash assets/fonts/build-subset.sh
   ------------------------------------------------------------------ */
@font-face {
  font-family: "Noto Serif TC";
  src: url("assets/fonts/NotoSerifTC-subset-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
p, blockquote, figure, dl, dd { margin: 0; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  transform: translateY(-170%);
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, blockquote {
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
}
h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.24;
  font-weight: 700;
  text-wrap: balance;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 540px;
  margin-top: 34px;
  padding: 23px 36px;
  color: white;
  background: linear-gradient(135deg, var(--teal), #0a5554);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 32px rgba(6, 63, 64, 0.22);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
}
.button span { display: inline-block; font-size: 1.8rem; line-height: 0; transform: translateY(0.06em); transition: transform 0.18s ease-out; }
.button:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* CTA 動態：引導點擊（hover 上浮＋箭頭前推、按下回饋、週期光澤掃過） */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(6, 63, 64, 0.32);
  filter: brightness(1.06);
}
.button:hover span { transform: translateX(5px) translateY(0.06em); }
.button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 10px 24px rgba(6, 63, 64, 0.24);
}
@media (prefers-reduced-motion: no-preference) {
  .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    /* Safari：偽元素 transform 動畫需明確合成提示才會跑 */
    -webkit-transform: translateX(-260%) skewX(-18deg);
    transform: translateX(-260%) skewX(-18deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    pointer-events: none;
    -webkit-animation: cta-sheen 5s ease-in-out infinite;
    animation: cta-sheen 5s ease-in-out infinite;
  }
  @-webkit-keyframes cta-sheen {
    0%, 58% { -webkit-transform: translateX(-260%) skewX(-18deg); }
    100% { -webkit-transform: translateX(430%) skewX(-18deg); }
  }
  @keyframes cta-sheen {
    0%, 58% { transform: translateX(-260%) skewX(-18deg); }
    100% { transform: translateX(430%) skewX(-18deg); }
  }
}
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(0, 38%);
  min-height: clamp(660px, 55vw, 820px);
  overflow: hidden;
  color: var(--hero-ink);
  background: var(--hero-ivory);
}
.hero__content {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: min(100%, 780px);
  margin-left: auto;
  padding: clamp(34px, 4vw, 68px) clamp(34px, 4.4vw, 76px) clamp(38px, 4.5vw, 72px) clamp(28px, 5.5vw, 92px);
}
/* 品牌 lockup 固定在 hero 頂端（masthead），下方內容在剩餘高度置中，不再整塊一起垂直置中 */
.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  margin: 0 0 clamp(34px, 4vw, 58px);
}
.brand-lockup .brand-logo {
  width: auto;
  object-fit: contain;
}
.brand-lockup .brand-logo--storm { height: clamp(27px, 2.4vw, 38px); }
.brand-lockup .brand-logo--wsj { height: clamp(17px, 1.55vw, 24px); }
.brand-lockup span {
  color: #8c9a8e;
  /* 這裡只有一個「×」符號，改用 sans 以免為了單一字元多載一組 serif 400 字重 */
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1;
}
.hero h1 {
  max-width: 13.8em;
  color: var(--hero-ink);
  font-size: clamp(2.18rem, 3.62vw, 3.48rem);
  line-height: 1.26;
  letter-spacing: 0.01em;
  white-space: normal;
  text-wrap: pretty;
}
.hero h1 span {
  white-space: nowrap;
}
.hero__subtitle {
  max-width: 31em;
  margin-top: clamp(20px, 2.2vw, 30px);
  color: #3c5c57;
  font-size: clamp(1.02rem, 1.32vw, 1.25rem);
  line-height: 1.85;
  text-wrap: pretty;
}
.hero__product-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.35em;
  max-width: min(100%, 34rem);
  margin-top: clamp(16px, 1.7vw, 22px);
  padding: 11px 16px;
  border: 1px solid rgba(181, 150, 93, 0.46);
  border-left: 3px solid var(--mist-gold);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.56);
  color: #435f5a;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.14rem); /* 2026-08-14 Ken 確認放大：贈品誘因不該讀起來像小字免責聲明 */
  font-weight: 500;
  line-height: 1.45;
}
@media (min-width: 821px) {
  .hero__product-label::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(44, 62, 53, 0.82);
    border-radius: 999px;
    background: var(--hero-ivory);
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero__product-label::after {
    content: "";
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    width: clamp(112px, 13vw, 214px);
    height: 2px;
    background:
      radial-gradient(circle at right center, #2C3E35 0 4px, transparent 4.5px),
      linear-gradient(90deg, rgba(44, 62, 53, 0.72), rgba(44, 62, 53, 0.48));
    opacity: 0.72;
    transform: translateY(-50%);
    pointer-events: none;
  }
}
.hero__product-label span {
  color: var(--beurer-pink);
  font-weight: 700;
  white-space: nowrap;
}
.hero__product-label small {
  color: #65766f;
  font-size: 0.92em;
  font-weight: 500;
  white-space: nowrap;
}
.hero .button {
  width: fit-content;
  min-width: min(100%, 27rem);
  margin-top: clamp(18px, 2.1vw, 28px);
  padding: clamp(17px, 1.5vw, 21px) clamp(24px, 2.4vw, 38px);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--hero-ink), #0f514b);
  box-shadow: 0 12px 28px rgba(23, 63, 59, 0.2);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  text-align: center;
}
.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--sage);
}
.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: clamp(74px, 10vw, 170px);
  background: linear-gradient(90deg, var(--hero-ivory) 0%, rgba(245, 241, 232, 0.88) 22%, rgba(245, 241, 232, 0) 100%);
  pointer-events: none;
}
.hero__visual-badge {
  position: absolute;
  z-index: 3;
  left: clamp(54%, 58%, 62%);
  top: clamp(105px, 33%, 250px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(44, 62, 53, 0.42);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.84);
  color: #2C3E35;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.86vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(31, 54, 50, 0.14);
  backdrop-filter: blur(8px);
  transform: translateX(-8%);
}
.hero__visual-badge::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.78;
}
.hero__picture,
.hero__product {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__picture {
  position: absolute;
  inset: 0;
}
.hero__product {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) sepia(0.06) brightness(1.03) contrast(0.96);
}

.section { padding: 72px 24px; }
.measure {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}
.trust {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 4.2vw, 64px) 24px clamp(40px, 3.8vw, 58px); /* 2026-08-14 收緊段落間距，原 clamp(62,6.3vw,92)/clamp(56,5.8vw,84) */
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.98) 0 16%, rgba(255,255,255,0.5) 42%, transparent 68%),
    radial-gradient(circle at 95% 12%, rgba(181, 150, 93, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f5efe4 100%);
  border-block: 1px solid rgba(181, 150, 93, 0.2);
}
.trust::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -24%;
  width: 50%;
  height: 78%;
  border-top: 1px solid rgba(181, 150, 93, 0.22);
  border-radius: 50%;
  box-shadow:
    -18px -20px 0 -19px rgba(181, 150, 93, 0.22),
    -46px -48px 0 -47px rgba(181, 150, 93, 0.14);
  transform: rotate(-12deg);
  pointer-events: none;
}
.trust .measure {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}
.trust h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
  color: var(--hero-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.32;
}
.trust h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 9px;
  background: radial-gradient(circle, var(--mist-gold) 0 4px, transparent 4.5px);
  transform: translateX(-50%);
}
.trust h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: min(38vw, 430px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181, 150, 93, 0.72) 34%, transparent 34% 66%, rgba(181, 150, 93, 0.72) 66%, transparent 100%);
  transform: translateX(-50%);
}
.wide-break { display: none; }
@media (min-width: 821px) {
  .wide-break { display: inline; }
}
.m-break { display: none; }
@media (max-width: 820px) {
  .m-break { display: initial; }
}
.trust .measure p {
  max-width: 880px;
  margin: 22px auto 0;
  color: #4f554d;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.proof__grid {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin: clamp(38px, 4.4vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.proof__grid div {
  min-height: 228px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: clamp(26px, 2.7vw, 38px) clamp(22px, 2.6vw, 36px);
  border: 1px solid rgba(181, 150, 93, 0.18);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 46px rgba(79, 66, 42, 0.06);
  text-align: center;
}
.proof__grid div + div { border-left: 1px solid rgba(181, 150, 93, 0.18); }
.proof dt,
.proof__grid dt {
  font-family: var(--font-serif);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: auto;
  color: var(--mist-gold);
  font-size: clamp(3.1rem, 4.8vw, 5rem);
  font-weight: 700;
  line-height: 1;
}
.proof__icon {
  display: block;
  width: auto;
  height: 54px;
  margin-bottom: 4px;
  object-fit: contain;
  opacity: 0.78;
  filter: sepia(0.55) saturate(0.85) hue-rotate(350deg) brightness(0.9);
}
.proof__icon--laurel {
  height: 62px;
}
.proof__icon--trophy {
  height: 58px;
}
.proof__label {
  margin-top: 0;
  color: #73684f;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.proof__number {
  display: block;
  color: var(--mist-gold);
}
.proof dd,
.proof__grid dd {
  color: #3e453d;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 600;
  line-height: 1.65;
}
.benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) minmax(500px, 680px) minmax(420px, 720px) minmax(40px, 1fr);
  gap: 34px;
  min-height: 640px;
  overflow: hidden;
  padding: clamp(50px, 4.6vw, 68px) 0; /* 2026-08-14 收緊段落間距，原 clamp(62,6.2vw,88) */
  color: var(--hero-ink);
  background:
    radial-gradient(circle at 83% 38%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(105deg, #f4efe4 0%, #fffaf0 45%, #e9e6d9 100%);
  border-block: 1px solid rgba(181, 150, 93, 0.18);
}
.benefits__copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
}
.eyebrow {
  margin-bottom: 12px;
  color: #d7e2de;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.benefits h2 {
  color: var(--hero-ink);
  font-size: clamp(2rem, 3vw, 3.18rem);
  line-height: 1.25;
}
.benefits-title-tail {
  white-space: nowrap;
}
.benefits-title-number {
  color: var(--mist-gold);
  font-size: 1.18em;
  font-weight: 700;
}
.benefits__lead {
  margin-top: 10px;
  color: #2C3E35;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.benefits__list {
  margin: clamp(26px, 3vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}
.benefits__list li {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
}
.benefits__list li + li {
  border-top: 1px solid rgba(181, 150, 93, 0.2);
}
.benefit-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #aebcaf;
  color: #2C3E35;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.68),
    0 12px 28px rgba(44, 62, 53, 0.12);
}
.benefit-icon svg {
  width: 25px;
  height: 25px;
  stroke: #2C3E35;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.benefits strong {
  display: block;
  margin-bottom: 4px;
  color: #173f3b;
  font-family: var(--font-sans);
  font-size: clamp(1.16rem, 1.55vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}
.benefits__list p {
  color: #3c5c57;
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
}
.benefit-index {
  display: none;
}
.benefits__visual {
  position: relative;
  z-index: 0;
  grid-column: 3 / 5;
  align-self: stretch;
  min-height: 500px;
}
.benefits__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: saturate(0.82) sepia(0.08) brightness(1.04) contrast(0.94);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 18%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 18%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.gift {
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(560px, 720px) minmax(420px, 700px) minmax(40px, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
  min-height: auto;
  padding: clamp(40px, 3.6vw, 56px) 0; /* 2026-08-14 二次收緊，原 clamp(72,6.6vw,104)→clamp(54,4.9vw,76) */
  background: #FAF7F1;
  border-top: 1px solid rgba(181, 150, 93, 0.16);
  overflow: hidden;
}
.gift__copy {
  grid-column: 2;
  position: relative;
  z-index: 2;
  align-self: start; /* 原本吃 .gift 的 align-items:center，被 .gift__visual 的 min-height:620px 撐高整列，
                         copy 內容較短時被置中出多餘留白，跟權益段的 section padding 疊加後間距過大
                         （2026-08-14 Ken 反映權益段／贈品段間距太大，實測從 241px 降到 185px） */
}
.gift__eyebrow {
  margin-bottom: 10px;
  color: var(--hero-ink);
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.gift__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.05rem); /* 2026-08-14 Ken 反映比 Trust/Benefits 的 h2 明顯小，原本 35.3px，對齊到約 43px 同級 */
  font-weight: 700;
  line-height: 1.34;
  color: var(--hero-ink);
}
.gift__title-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2em 0.4em;
}
.gift-title-logo {
  height: clamp(38px, 2.9vw, 54px); /* 跟著標題文字比例放大，避免 logo 相對變小 */
  width: auto;
  max-width: min(100%, 330px);
  margin: 0;
  object-fit: contain;
  transform: translateY(0.08em);
}
.gift__headline-emphasis {
  display: inline;
  color: var(--beurer-pink);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.gift__headline small {
  display: inline-block;
  color: rgba(55, 58, 52, 0.78);
  font-family: var(--font-sans);
  font-size: 0.55em;
  font-weight: 500;
  white-space: nowrap;
}
.gift__trust-line {
  margin: 0 0 clamp(16px, 1.5vw, 20px);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(181, 150, 93, 0.24);
  color: rgba(55, 58, 52, 0.85); /* 原 0.62 對比 #FAF7F1 僅約 3.63:1，未達 WCAG AA；提高至 0.85（約 6.9:1）*/
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 1.05vw, 1.04rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.gift__lead {
  margin-top: clamp(30px, 3vw, 42px);
  color: #616a65;
  font-size: clamp(1.04rem, 1.2vw, 1.16rem);
  font-weight: 400;
  line-height: 1.82;
}
.gift-specs {
  display: block;
  margin: clamp(24px, 2.6vw, 36px) 0 0;
  padding: clamp(32px, 3vw, 44px);
  border-radius: 18px;
  background: rgba(197, 0, 80, 0.045);
}
.gift-spec-line {
  color: #2C3E35;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.16vw, 1.14rem);
  line-height: 1.7;
  text-align: left;
}
.gift-spec-line + .gift-spec-line {
  margin-top: clamp(18px, 1.8vw, 24px);
}
.gift-spec-primary {
  font-weight: 700;
}
.gift-spec-accent {
  color: #C50050;
}
.gift-spec-benefit {
  color: rgba(44, 62, 53, 0.68);
  font-size: 0.88em;
  font-weight: 400;
}
.no-break { white-space: nowrap; }
.gift__visual {
  grid-column: 3 / 5;
  align-self: stretch;
  min-height: 620px;
  position: relative;
  overflow: visible;
}
.gift__visual::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.gift--blob .gift__visual::before {
  right: clamp(36px, 6.6vw, 116px);
  top: clamp(54px, 6.8vw, 112px);
  width: clamp(320px, 34vw, 540px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(197, 0, 80, 0.1);
  filter: blur(3px);
}
.gift__visual img {
  position: absolute;
  z-index: 1;
  right: clamp(34px, 5.4vw, 94px);
  bottom: clamp(0px, 1.2vw, 18px);
  width: min(88%, 560px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.92) brightness(1.02) contrast(0.98);
}

.final-cta {
  /* 2026-08-14 二次收緊：上下都再縮小，CTA→注意事項那段原本以為是「對照基準」，
     後來確認同樣偏寬，這次一起收 */
  padding: clamp(20px, 2.2vw, 28px) 24px clamp(28px, 3vw, 40px);
  text-align: center;
  background: #fffdf8;
}
.final-cta__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1040px);
  margin-inline: auto;
  /* 2026-08-14：拿掉自己的 padding／background（原本 #FAF7F1，跟贈品段背景色相同）。
     border 拿掉後這塊底色沒跟著拿掉，變成在 .final-cta 的 #fffdf8 背景上多疊一層方形色塊，
     看起來像是「沒有邊框的邊框」；同時它自己的 padding 疊在 .final-cta 的 section padding 上，
     跟贈品段之間的間距也被拉大（235.7px→197.7px）。移除後改由 .final-cta 的 section padding 單獨負責留白 */
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.final-cta__offer {
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}
.final-cta__gift-icon {
  position: static;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  margin: 0 auto 12px;
  border-radius: 0;
  background: transparent;
  color: #2C3E35;
  transform: none;
}
.final-cta__gift-icon svg,
.assurance__icon svg {
  width: 54%;
  height: 54%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.limit-line {
  color: #2C3E35;
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.65;
}
.limit-line strong {
  color: #C50050;
  /* 原為 DM Mono，但該字型未載入且無中文字符，「20」與「組」會拆成兩種字型混排 */
  font-family: var(--font-sans);
  font-size: 1.16em;
  font-weight: 700;
  white-space: nowrap;
}
.final-cta__price {
  max-width: 870px;
  margin: clamp(16px, 1.8vw, 22px) auto 0;
  color: #2C3E35;
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 1.7vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}
.final-cta__price strong {
  color: #C50050;
  font-size: 1.28em;
  font-weight: 700;
  white-space: nowrap;
}
.final-note {
  max-width: 870px;
  margin: clamp(8px, 1vw, 12px) auto 0;
  color: var(--soft-ink);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}
.final-cta .button {
  width: min(100%, 760px);
  min-width: 0;
  max-width: none;
  margin-top: clamp(20px, 2.2vw, 26px);
  padding-block: clamp(19px, 1.9vw, 23px);
  border-radius: 3px;
  background: linear-gradient(135deg, #2C3E35, #164c47);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
}
.assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin: 18px 0 0;
  padding: 0;
  color: #53615b;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.assurance li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.assurance__icon {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #2C3E35;
}
.assurance__icon svg {
  width: 100%;
  height: 100%;
}
.assurance li + li { border-left: 1px solid rgba(181, 150, 93, 0.28); padding-left: 24px; }

.notes {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 36px 24px 76px; /* 2026-08-14 上緣收緊，原 56px；下緣維持不動 */
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 18%, var(--paper-deep) 100%);
}
.notes::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 54px;
  left: 50%;
  width: min(860px, calc(100% - 48px));
  transform: translateX(-50%);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(55, 58, 52, 0.08);
  box-shadow: 0 18px 42px rgba(55, 58, 52, 0.05);
}
.notes__title {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.notes__list {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1.45em;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.9;
}
.notes__list li { margin-bottom: 10px; padding-left: 0.2em; }
.notes__list li:last-child { margin-bottom: 0; }
.notes__list strong { color: #aa400d; font-weight: 700; } /* 沿用本頁 --orange (#ef6d2f) 的色相，降低明度以通過 WCAG AA（實測約 5.3–6:1，--orange 原色僅 2.3–3:1）；此為推薦碼文字，非沿用 EDM 規範的 #c14f14（該值在本頁背景下僅約 4.2–4.7:1，過於臨界） */
.notes__list a { color: var(--teal); text-decoration: underline; }

@media (max-width: 820px) {
  html, body { overflow-x: hidden; }
  body { font-size: 16px; }
  h1 { font-size: clamp(2rem, 9.2vw, 2.75rem); line-height: 1.18; white-space: normal; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.45rem); }
  .final-cta {
    padding: 32px 16px;
  }
  .final-cta__panel {
    padding: 0;
    border-radius: 0;
  }
  .final-cta__offer {
    padding-left: 0;
  }
  .final-cta__gift-icon {
    width: 30px;
    margin-bottom: 10px;
    transform: none;
  }
  .limit-line {
    font-size: 1rem;
    line-height: 1.65;
  }
  .final-note {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.68;
  }
  .final-cta__price {
    margin-top: 20px;
    font-size: clamp(1.1rem, 4.65vw, 1.42rem);
    white-space: normal;
  }
  .final-cta .button {
    margin-top: 18px;
    padding: 17px 16px;
    font-size: 1rem;
    letter-spacing: 0.035em;
  }
  .button { width: 100%; min-width: 0; max-width: 100%; padding: 18px 22px; }
  .hero .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 16px 18px;
    font-size: 1.04rem;
    white-space: nowrap;
  }
  .hero .button span {
    flex: 0 0 auto;
    font-size: 1.55rem;
  }

  .hero {
    --hero-mobile-gutter: clamp(20px, 5.5vw, 34px);
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    padding-inline: var(--hero-mobile-gutter);
  }
  .hero__content {
    width: 100%;
    margin: 0;
    padding: clamp(26px, 7vw, 46px) 0 clamp(28px, 7vw, 48px);
  }
  .brand-lockup { margin-bottom: clamp(28px, 7vw, 40px); }
  .brand-lockup .brand-logo--storm { height: clamp(27px, 6.7vw, 34px); }
  .brand-lockup .brand-logo--wsj { height: clamp(17px, 4.2vw, 21px); }
  .brand-lockup span { font-size: 1.05rem; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.65vw, 2.35rem);
    line-height: 1.24;
  }
  .hero__subtitle {
    margin-top: 18px;
    font-size: clamp(1rem, 4.1vw, 1.14rem);
    line-height: 1.75;
  }
  .hero__visual {
    width: auto;
    min-height: clamp(300px, 68vw, 560px);
    margin-inline: calc(-1 * var(--hero-mobile-gutter));
  }
  .hero__visual::before {
    inset: 0 0 auto;
    width: 100%;
    height: clamp(58px, 15vw, 90px);
    background: linear-gradient(180deg, var(--hero-ivory) 0%, rgba(245, 241, 232, 0.76) 28%, rgba(245, 241, 232, 0) 100%);
  }
  .hero__product-label {
    margin-top: 16px;
    padding: 9px 13px;
    font-size: 1.02rem;
  }
  .hero__product {
    object-position: center center;
  }

  .section { padding: 58px 22px; }
  .trust { padding: 50px 22px 44px; }
  .trust h2 { font-size: clamp(1.7rem, 6.4vw, 2.2rem); line-height: 1.3; }
  .trust .measure p { margin-top: 16px; font-size: 1rem; line-height: 1.72; }
  .proof__grid {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .proof__grid div {
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 22px;
    align-items: center;
    text-align: left;
    min-height: auto;
    padding: 24px 18px;
  }
  .proof__grid div + div { border-left: 0; border-top: 1px solid rgba(55, 58, 52, 0.14); }
  .proof__grid dt { display: contents; }
  .proof__grid div > .proof__icon,
  .proof__grid div > .proof__icon--laurel,
  .proof__grid div > .proof__icon--trophy {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    height: auto;
    margin: 0;
    object-fit: contain;
    opacity: 0.88;
  }
  .proof__icon--laurel { width: 60px; }
  .proof__icon--trophy { width: 50px; }
  .proof__grid div:nth-child(3) .proof__icon { width: 52px; }
  .proof__number {
    grid-column: 2;
    grid-row: 1;
    display: block;
    font-size: 46px;
    line-height: 1;
    text-align: left;
  }
  .proof__label { display: none; }
  .proof__grid dd {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    text-align: left;
  }
  .benefits {
    display: block;
    min-height: auto;
    padding: clamp(64px, 13vw, 82px) 22px clamp(58px, 12vw, 76px);
    background: #F4EFE4;
  }
  .benefits::after { display: none; }
  .benefits__copy,
  .benefits__list {
    width: 100%;
    max-width: 100%;
  }
  .benefits h2 {
    padding-bottom: 0;
    line-height: 1.32;
  }
  .benefits-title-tail {
    white-space: nowrap;
  }
  .benefits__lead {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }
  .benefits__list {
    margin-top: clamp(30px, 8vw, 42px);
  }
  .benefits__list li {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(181, 150, 93, 0.2);
  }
  .benefits__list li:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .benefits__list li > div {
    min-width: 0;
  }
  .benefits strong {
    margin-bottom: 6px;
    font-size: 1.28rem;
    line-height: 1.28;
  }
  .benefits p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .benefits strong,
  .benefits p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .benefit-icon {
    width: 68px;
    height: 68px;
    background: rgba(44, 62, 53, 0.09);
    border: 1px solid rgba(44, 62, 53, 0.08);
    box-shadow: none;
  }
  .benefit-icon svg {
    width: 34px;
    height: 34px;
  }
  .benefits__visual {
    display: none;
  }

  .gift {
    display: block;
    min-height: auto;
    padding: clamp(58px, 12vw, 74px) 22px clamp(46px, 10vw, 62px);
    overflow: hidden;
    max-width: 100%;
    background: #FAF7F1;
  }
  .gift__copy,
  .gift__headline,
  .gift__lead,
  .gift__trust-line,
  .gift-specs {
    max-width: 100%;
  }
  .gift__eyebrow {
    font-size: 1rem;
    line-height: 1.55;
  }
  .gift__headline {
    font-size: clamp(1.52rem, 6.25vw, 2rem);
    line-height: 1.36;
    overflow-wrap: break-word;
  }
  .gift__title-line {
    gap: 0.18em 0.32em;
  }
  .gift-title-logo {
    height: clamp(30px, 8vw, 40px);
    max-width: min(100%, 300px);
  }
  .gift__headline small {
    display: block;
    margin-top: 4px;
    font-size: 0.56em;
  }
  .gift__lead {
    margin-top: 30px;
    font-size: 1.03rem;
    line-height: 1.78;
  }
  .gift-specs {
    margin-top: 36px;
    padding: 30px 24px;
    border-radius: 14px;
  }
  .gift-spec-line {
    font-size: 1rem;
    line-height: 1.72;
  }
  .gift__visual {
    width: calc(100% + 44px);
    min-height: 390px;
    margin: -6px -22px -30px;
    position: relative;
    overflow: visible;
  }
  .gift--blob .gift__visual::before {
    right: 20px;
    top: 26px;
    width: 330px;
  }
  .gift__visual img {
    position: absolute;
    right: 8px;
    bottom: -8px;
    width: min(92%, 330px);
    height: auto;
    min-height: 0;
    max-width: none;
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .assurance {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 20px auto 0;
    font-size: 0.86rem;
  }
  .assurance li + li {
    border-left: 0;
    padding-left: 0;
  }

  .notes { padding: 42px 20px 58px; }
  .notes::before {
    top: 28px;
    bottom: 34px;
    width: calc(100% - 32px);
  }
  .notes__title {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 0.98rem;
  }
  .notes__list {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.82;
    padding-left: 1.3em;
  }
  .notes__list li { margin-bottom: 9px; }
}
