:root {
  --ink: #171412;
  --text: #5f5650;
  --muted: #9b9188;
  --paper: #fffdf8;
  --ivory: #f7f2ea;
  --soft: #fff8ee;
  --line: #e7dbc9;
  --gold: #c9a66a;
  --gold-soft: #ead6ac;
  --red: #e94b2e;
  --rose: #e9c98e;
  --blush: #fff7ea;
  --dark: #080c14;
  --wine: #111827;
  --shadow: 0 30px 86px rgba(8, 12, 20, .18);
  --soft-shadow: 0 18px 46px rgba(8, 12, 20, .07);
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(201,166,106,.025) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,253,248,.93);
  border-bottom: 1px solid rgba(8,12,20,.10);
  backdrop-filter: blur(16px);
  max-width: 100vw;
  overflow: hidden;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 760; font-size: 14px; }
.brand img {
  display: block;
  width: 190px;
  height: auto;
  background: transparent;
  box-shadow: none;
}
.brand-mark {
  display: block;
  width: 46px;
  height: 28px;
  background: url("assets/logo-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 8px 18px rgba(201,166,106,.22));
}
.nav-links { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 640; }
.nav-links > a { display: none; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(201,166,106,.42);
  background: rgba(255,253,248,.72);
}
.language-switch a {
  min-width: 38px;
  padding: 7px 10px;
  color: rgba(23,20,18,.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
  text-align: center;
}
.language-switch a.active {
  color: var(--dark);
  background: linear-gradient(135deg, rgba(234,214,172,.86), rgba(201,166,106,.72));
}

.hero {
  display: grid;
  gap: 34px;
  padding: 78px 20px 62px;
  background:
    radial-gradient(circle at 78% 18%, rgba(233,75,46,.42), transparent 23%),
    radial-gradient(circle at 18% 12%, rgba(201,166,106,.22), transparent 26%),
    linear-gradient(112deg, #070b13 0%, #111827 48%, #fffdf8 48.15%, #fffdf8 100%);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,20,.88) 0%, rgba(8,12,20,.54) 44%, rgba(255,253,248,.72) 76%, rgba(255,253,248,.95) 100%),
    url("assets/hero-tokyo-love-promise.png") center / cover no-repeat;
  opacity: .95;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,106,.90), transparent);
}
.hero-copy, .hero-card { position: relative; z-index: 1; }
.hero-copy { max-width: 700px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 12px; font-weight: 760; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section-head h2, .story-copy p, .hero-card h2 { font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, "Times New Roman", serif; }
.hero h1 { margin: 0; max-width: 780px; color: var(--gold-soft); font-size: clamp(34px, 8.6vw, 104px); line-height: .92; letter-spacing: -.035em; font-weight: 700; text-shadow: 0 16px 42px rgba(0,0,0,.28); white-space: nowrap; }
.hero-lead { margin: 26px 0 0; max-width: 760px; color: #fff; font-size: clamp(20px, 3.6vw, 39px); line-height: 1.15; font-weight: 720; white-space: nowrap; }
.hero-text { margin: 20px 0 0; max-width: 600px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.9; }
.hero-text.zh-line { margin-top: 14px; color: #fff; font-size: 18px; font-weight: 680; }
.hero-actions { display: grid; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--gold); color: var(--dark); background: transparent; font: inherit; font-size: 14px; font-weight: 760; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--dark); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-color: transparent; box-shadow: 0 18px 42px rgba(201,166,106,.24); }
.button.secondary { color: #fff; border-color: rgba(234,214,172,.72); background: transparent; }
.button.dark { color: var(--dark); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); border-color: transparent; box-shadow: 0 18px 38px rgba(201,166,106,.22); }

.hero-card { align-self: end; padding: 30px; background: linear-gradient(180deg, #fff, #fff8ed); border: 1px solid rgba(201,166,106,.34); box-shadow: var(--shadow); }
.hero-card p { margin: 0 0 18px; color: var(--red); font-size: 12px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.hero-card h2 { margin: 0; color: var(--ink); font-size: 38px; line-height: 1.02; }
.hero-card ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-card li { color: var(--ink); font-weight: 650; line-height: 1.5; }

.brand-story { padding: 82px 22px; text-align: center; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-copy { max-width: 900px; margin: 0 auto; }
.story-copy > p { margin: 0; color: var(--ink); font-size: clamp(24px, 5vw, 40px); line-height: 1.35; letter-spacing: -.025em; }
.story-copy > p + p { margin-top: 20px; color: #4a3634; font-size: clamp(20px, 4vw, 32px); }
.english-story {
  max-width: 820px;
}
.story-copy.english-story {
  max-width: 1280px;
}
.english-story > p,
.english-story > p + p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #463a36;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.78;
  letter-spacing: 0;
}
.english-story > p:first-child {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.34;
}
.english-story .story-statement,
.story-translation .story-statement {
  display: grid;
  gap: 12px;
  max-width: 1040px;
  text-align: center;
  font-weight: 800;
}
.english-story .story-statement span,
.story-translation .story-statement span {
  display: block;
}
.story-statement .mobile-line,
.translation-lead .mobile-line {
  display: none !important;
}
.english-story > p.story-statement {
  max-width: 1280px !important;
  font-size: clamp(31px, 2.55vw, 37px);
}
.story-statement {
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
  letter-spacing: -.015em;
}
html:lang(zh-Hant) .hero-card h2 {
  white-space: nowrap;
  font-size: clamp(28px, 3.2vw, 38px);
}
html:lang(zh-Hant) .story-statement {
  display: grid;
  gap: 8px;
  font-size: clamp(28px, 3.8vw, 46px);
}
html:lang(zh-Hant) .story-statement span {
  display: block;
  white-space: nowrap;
}
.story-body {
  max-width: 860px;
  margin: 32px auto 0;
  padding: 34px 42px;
  background: #fffdf8;
  border: 1px solid rgba(201,166,106,.34);
  box-shadow: var(--soft-shadow);
  text-align: center;
}
.story-body p {
  margin: 0;
  color: #4c403b;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2.1;
  letter-spacing: .01em;
}
.story-body p + p { margin-top: 16px; }
html:lang(zh-Hant) .story-copy p { text-wrap: pretty; }
.story-translation {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 24px 34px 0;
  border-top: 1px solid rgba(201,166,106,.38);
  text-align: left;
}
.story-translation p,
.story-copy .story-translation p + p {
  margin: 0;
  color: #6f625c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.85;
  letter-spacing: 0;
}
.story-translation p + p { margin-top: 14px; }
.translation-lead {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3.2vw, 35px);
  line-height: 1.28;
  font-weight: 800;
  text-align: center;
}
.translation-lead span {
  display: block;
}
.translation-lead .mobile-line {
  display: none !important;
}

.section { padding: 78px 20px; }
.section-head { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { margin: 0; color: var(--ink); font-size: clamp(36px, 8vw, 66px); line-height: 1; letter-spacing: -.035em; }
.section-head h2 span {
  display: block;
  white-space: nowrap;
  text-align: center;
}
.section-head h2.single-line-title {
  white-space: nowrap;
}
.section-head h2 span + span {
  margin-top: 8px;
}
.section-head p { margin: 18px auto 0; max-width: 680px; color: var(--text); font-size: 15px; line-height: 1.85; }

.products-section, .pricing-section { background: var(--paper); }
.process-section, .faq-section { background: linear-gradient(180deg, var(--ivory), #fff); }
.inquiry-section { background: linear-gradient(180deg, #fff, #fff5f3); }
.product-grid { display: grid; gap: 16px; max-width: 1180px; margin: 0 auto; }
.product-card { position: relative; overflow: hidden; display: grid; align-content: start; min-height: 300px; padding: 30px; background: rgba(255,255,255,.92); border: 1px solid rgba(234,220,213,.96); box-shadow: var(--soft-shadow); }
.product-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); opacity: 1; }
.product-card.featured { background: #fff; border-color: rgba(201,166,106,.45); box-shadow: var(--shadow); }
.product-card.quiet { background: #fff8f7; }
.product-card span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.product-card h3 { margin: 16px 0 12px; color: var(--ink); font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, "Times New Roman", serif; font-size: 31px; line-height: 1.08; }
.price { justify-self: start; margin: 0 0 18px; padding: 7px 12px; color: var(--red); background: #fff8ed; border: 1px solid rgba(201,166,106,.34); font-size: 17px; font-weight: 780; }
.product-card p { margin: 0; color: var(--text); line-height: 1.88; }
.product-card small { display: block; margin-top: 18px; padding-top: 16px; color: var(--muted); border-top: 1px solid var(--line); line-height: 1.72; }
.product-visual {
  position: relative;
  overflow: hidden;
  margin: -30px -30px 24px;
  aspect-ratio: 16 / 9;
  background: var(--dark);
}
.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,20,.05) 0%, rgba(8,12,20,.30) 48%, rgba(8,12,20,.82) 100%),
    linear-gradient(90deg, rgba(8,12,20,.50), transparent 58%);
}
.product-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  color: #fff;
}
.product-visual b {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.product-visual strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.product-visual em {
  justify-self: start;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 5px 9px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
html:lang(zh-Hant) .section-head h2 { line-height: 1.18; letter-spacing: 0; }
html:lang(en) .pricing-section .section-head h2 {
  white-space: nowrap;
  font-size: clamp(34px, 6.8vw, 62px);
}
html:lang(zh-Hant) .faq-section .section-head h2,
html:lang(zh-Hant) .inquiry-section .section-head h2 {
  white-space: nowrap;
  font-size: clamp(30px, 5vw, 58px);
}
html:lang(zh-Hant) .section-head p,
html:lang(zh-Hant) .product-card p,
html:lang(zh-Hant) .product-card small,
html:lang(zh-Hant) .process-list p,
html:lang(zh-Hant) .policy-grid p,
html:lang(zh-Hant) .faq-list p { text-align: justify; text-justify: inter-ideograph; text-wrap: pretty; }
html:lang(zh-Hant) .product-card h3 { font-size: 28px; letter-spacing: 0; }
html:lang(zh-Hant) .product-card p { font-size: 15px; line-height: 1.95; }
html:lang(zh-Hant) .product-card small { font-size: 13px; line-height: 1.85; }

.process-list, .policy-grid, .faq-list { max-width: 1000px; margin: 0 auto; }
.process-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.process-list li, .policy-grid div, .faq-list details { padding: 26px; background: rgba(255,255,255,.82); border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
.process-list span { color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.process-list strong, .policy-grid h3, .faq-list summary { display: block; margin: 10px 0; color: var(--ink); font-weight: 720; }
.process-list p, .policy-grid p, .faq-list p { margin: 0; color: var(--text); line-height: 1.75; }
.policy-grid { display: grid; gap: 16px; }
.faq-list { display: grid; gap: 12px; }
.faq-list summary { cursor: pointer; }

.inquiry-form { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; padding: 22px; background: rgba(255,255,255,.94); border: 1px solid rgba(191,48,43,.15); box-shadow: var(--shadow); }
label { display: grid; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line); background: #fffdfa; color: var(--ink); padding: 15px; font: inherit; font-size: 15px; outline: none; }
textarea { min-height: 150px; resize: vertical; line-height: 1.7; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,166,106,.14); }
.full { grid-column: 1 / -1; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

.footer { padding: 42px 20px; text-align: center; color: rgba(234,214,172,.78); background: var(--dark); border-top: 3px solid var(--red); font-size: 13px; line-height: 1.8; }
.footer p { margin: 5px 0; }
.footer-brand { color: var(--gold-soft); font-weight: 760; }

@media (min-width: 760px) {
  .hero-actions { display: flex; }
  .inquiry-form { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 30px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  html:lang(zh-Hant) .product-grid { grid-template-columns: 1fr; max-width: 980px; }
  html:lang(zh-Hant) .product-card {
    grid-template-columns: 300px 64px minmax(0, 1fr) auto;
    column-gap: 24px;
    min-height: 0;
    padding: 30px 34px;
  }
  html:lang(zh-Hant) .product-visual { grid-column: 1; grid-row: 1 / span 5; margin: -30px 0 -30px -34px; height: 100%; aspect-ratio: auto; }
  html:lang(zh-Hant) .product-card span { grid-column: 2; grid-row: 1 / span 3; padding-top: 6px; }
  html:lang(zh-Hant) .product-card h3 { grid-column: 3; margin-top: 0; }
  html:lang(zh-Hant) .product-card .price { grid-column: 4; grid-row: 1; align-self: start; margin: 0; white-space: nowrap; }
  html:lang(zh-Hant) .product-card p { grid-column: 3 / 5; max-width: 760px; }
  html:lang(zh-Hant) .product-card small { grid-column: 3 / 5; max-width: 760px; }
  .policy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1040px) {
  .site-header { padding: 16px 34px; }
  .nav-links { gap: 20px; }
  .nav-links > a { display: inline; }
  .hero { grid-template-columns: minmax(0, 1fr) 380px; align-items: center; min-height: 760px; padding: 100px min(6vw, 86px) 86px; }
  .section { padding: 96px min(6vw, 86px); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 1080px; }
  html:lang(zh-Hant) .product-grid { grid-template-columns: 1fr; max-width: 1020px; gap: 18px; }
  .process-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1039px) {
  .hero {
    background:
      radial-gradient(circle at 80% 12%, rgba(233,75,46,.42), transparent 24%),
      linear-gradient(180deg, #070b13 0%, #111827 62%, #fffdf8 62.2%, #fffdf8 100%);
  }
}

@media (max-width: 759px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  main,
  section,
  header,
  footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    overflow: hidden;
  }
  .brand {
    max-width: 100%;
    justify-self: start;
  }
  .brand img {
    width: min(164px, 48vw);
  }
  .nav-links {
    max-width: 43vw;
    justify-content: flex-end;
  }
  .language-switch {
    max-width: 100%;
  }
  .language-switch a {
    min-width: 34px;
    padding: 7px 8px;
  }
  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    padding: 58px 18px 52px;
    gap: 24px;
    overflow: hidden;
    background:
      linear-gradient(180deg, #070b13 0%, #111827 100%);
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(8,12,20,.92) 0%, rgba(8,12,20,.82) 66%, rgba(8,12,20,.68) 100%),
      url("assets/hero-tokyo-love-promise.png") center / cover no-repeat;
    opacity: .92;
  }
  .hero-copy,
  .hero-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero h1 {
    white-space: nowrap;
    max-width: calc(100vw - 36px);
    font-size: clamp(34px, 9vw, 43px);
    line-height: 1.02;
    letter-spacing: -.04em;
    overflow-wrap: normal;
  }
  .hero-lead {
    white-space: normal;
    max-width: calc(100vw - 36px);
    font-size: clamp(22px, 5.8vw, 29px);
    line-height: 1.25;
    overflow-wrap: normal;
  }
  .hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
    overflow-wrap: normal;
  }
  html:lang(zh-Hant) .hero-card h2,
  .hero-card h2 {
    white-space: normal;
    font-size: clamp(34px, 9.8vw, 44px);
    line-height: 1.12;
  }
  .hero-card {
    padding: 24px 22px;
  }
  .brand-story,
  .section {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }
  .brand-story { padding-top: 72px; padding-bottom: 72px; }
  .story-copy,
  .section-head,
  .process-list,
  .policy-grid,
  .faq-list,
  .inquiry-form,
  .product-grid {
    width: 100%;
    max-width: 100%;
  }
  html:lang(zh-Hant) .story-statement {
    gap: 10px;
    font-size: clamp(24px, 6.5vw, 30px);
    line-height: 1.32;
    letter-spacing: .01em;
  }
  html:lang(zh-Hant) .story-statement span {
    white-space: normal;
  }
  .story-body {
    margin-top: 28px;
    padding: 28px 22px;
  }
  .story-body p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .story-body br {
    display: none;
  }
  .story-translation {
    margin-top: 28px;
    padding: 26px 4px 0;
    text-align: center;
  }
  .translation-lead {
    gap: 8px;
    margin-bottom: 24px;
    font-size: clamp(22px, 5.5vw, 27px);
    line-height: 1.36;
    letter-spacing: .005em;
  }
  .translation-lead span {
    max-width: 13em;
    margin: 0 auto;
  }
  .story-statement .desktop-line,
  .translation-lead .desktop-line {
    display: none !important;
  }
  .story-statement .mobile-line,
  .translation-lead .mobile-line {
    display: block !important;
  }
  .english-story .story-statement {
    gap: 8px;
    max-width: 100%;
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -.02em;
  }
  .english-story .story-statement span {
    max-width: 10.5em;
    margin: 0 auto;
  }
  .story-translation p,
  .story-copy .story-translation p + p {
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.85;
    text-align: center;
  }
  .section-head h2,
  html:lang(en) .pricing-section .section-head h2,
  html:lang(zh-Hant) .faq-section .section-head h2,
  html:lang(zh-Hant) .inquiry-section .section-head h2,
  .section-head h2.single-line-title {
    white-space: normal;
    max-width: 100%;
    font-size: clamp(30px, 7.4vw, 36px);
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  html:lang(en) .products-section .section-head h2,
  html:lang(en) .pricing-section .section-head h2 {
    font-size: clamp(29px, 7vw, 34px);
    line-height: 1.16;
    max-width: 10.5em;
    margin-left: auto;
    margin-right: auto;
  }
  html:lang(zh-Hant) .inquiry-section .section-head h2,
  html:lang(zh-Hant) .pricing-section .section-head h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.22;
    max-width: 8.5em;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-section .section-head h2 {
    max-width: 11em;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-section .section-head p {
    max-width: 20em;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
  }
  .policy-grid div,
  .process-list li,
  .faq-list details {
    padding: 22px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .policy-grid p,
  .process-list p,
  .faq-list p {
    font-size: 15px;
    line-height: 1.78;
    text-align: left !important;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: 0;
  }
  .policy-grid h3 {
    font-size: 23px;
    line-height: 1.2;
  }
  .inquiry-form {
    padding: 20px;
    overflow: hidden;
  }
  .button {
    width: 100%;
  }
  html:lang(zh-Hant) .product-card {
    display: grid;
    padding: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    overflow: hidden;
  }
  .product-grid {
    overflow: hidden;
  }
  html:lang(zh-Hant) .product-visual {
    margin: -24px -24px 22px;
    aspect-ratio: 16 / 10;
  }
  .product-visual figcaption {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }
  .product-visual strong {
    font-size: clamp(25px, 8.4vw, 38px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }
  html:lang(zh-Hant) .product-card h3,
  .product-card h3 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  html:lang(zh-Hant) .product-card p,
  html:lang(zh-Hant) .product-card small,
  .product-card p,
  .product-card small {
    max-width: 100%;
    text-align: left !important;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }
  html:lang(zh-Hant) .product-card p,
  html:lang(zh-Hant) .product-card small {
    text-align: left !important;
    text-justify: auto !important;
    word-spacing: normal !important;
    letter-spacing: .01em;
  }
  html:lang(zh-Hant) .product-card p,
  .product-card p {
    font-size: 16px;
    line-height: 1.82;
  }
  html:lang(zh-Hant) .product-card small,
  .product-card small {
    font-size: 14px;
    line-height: 1.75;
  }
  input,
  select,
  textarea {
    min-width: 0;
    font-size: 16px;
  }
  .footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}
