:root {
  --paper: #fffaf1;
  --ink: #10100f;
  --muted: #77736b;
  --line: rgba(16, 16, 15, .13);
  --green: #5a694e;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  -webkit-font-smoothing: antialiased;
  --story-progress: 0%;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; }
.container { width: min(1208px, calc(100% - 48px)); margin-inline: auto; }

.topline {
  height: 34px;
  display: grid;
  place-items: center;
  background: #10100f;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .88px;
  text-transform: uppercase;
}

.nav {
  width: min(1200px, calc(100% - 48px));
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper), 0 1px rgba(16,16,15,.07);
  clip-path: inset(0 -100vmax);
}
.nav-links { display: flex; gap: 22px; font-family: "Noto Serif TC", serif; font-size: 14px; }
.nav-links a { font-weight: 400; }
.nav-links a.active { font-weight: 700; }
.logo { font: 400 18px/1 "Abril Fatface", serif; letter-spacing: -.72px; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-cta { justify-self: end; }
.language-switcher { display: inline-flex; padding: 3px; border: 1px solid rgba(16,16,15,.15); border-radius: 999px; background: rgba(255,250,241,.86); }
.language-switcher button { min-width: 30px; height: 26px; padding: 0 7px; border: 0; border-radius: 999px; background: transparent; color: #77736b; cursor: pointer; font: 700 9px Manrope, sans-serif; }
.language-switcher button.active { background: #10100f; color: #fff; }
.language-switcher button:focus-visible { outline: 2px solid #526348; outline-offset: 2px; }
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 10px 14px 24px;
  border-radius: 999px;
  background: #0b0b0a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.nav .dark-button { padding: 7.75px 4px 7.75px 18px; font-family: "Noto Serif TC", serif; }
.dark-button i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-style: normal;
}
.menu-toggle { display: none; }
.menu-toggle span { transition: transform .24s ease, opacity .24s ease; }

body.menu-open { overflow: hidden; }
body.home-page::after {
  content: "";
  position: fixed;
  z-index: 90;
  top: calc(50vh - 92px);
  right: 24px;
  width: 2px;
  height: 184px;
  border-radius: 999px;
  background:
    linear-gradient(#10100f, #10100f) 0 0 / 100% var(--story-progress) no-repeat,
    rgba(16, 16, 15, .12);
  opacity: .46;
  pointer-events: none;
}

.hero { padding-top: 66px; text-align: center; }
.hero-kicker {
  margin: 0;
  color: #10100f;
  font: 500 62px/80.6px "Noto Serif TC", serif;
  letter-spacing: .62px;
}
.hero h1 {
  margin: 4px 0 0;
  color: #10100f;
  font: 500 62px/80.6px "Noto Serif TC", serif;
  letter-spacing: .62px;
}
.hero-copy > p:not(.hero-kicker) {
  width: 468px;
  margin: 30px auto 24px;
  color: var(--muted);
  font: 500 16px/31.45px "Noto Serif TC", serif;
}
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 12px; }
.hero-contact-button { min-height: 53px; padding: 0 24px; border: 1px solid rgba(16,16,15,.18); border-radius: 999px; background: transparent; display: inline-flex; align-items: center; justify-content: center; font: 600 13px "Noto Serif TC", serif; }
.art-scene {
  height: 600px;
  margin-top: 189px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(42px) scale(.985);
  animation: artSceneReveal 1.2s .5s cubic-bezier(.16, 1, .3, 1) forwards;
}
.art-scene img,
.metric-art,
.contact-art img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.055);
  will-change: transform;
}
.art-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(238, 228, 211, .06);
  pointer-events: none;
}
.process-card {
  position: relative;
  z-index: 2;
  width: calc(100% - 100px);
  min-height: 263px;
  margin: -61px auto 0;
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  border-radius: 24px;
  background: #f6efe3;
  text-align: left;
}
.process-card article { padding: 6.5px 23px 11px 0; border-right: 1px solid var(--line); }
.process-card article:last-child { border-right: 0; padding-bottom: 38.6px; }
.process-card span { color: var(--muted); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; }
.process-card h2 {
  margin: 25.7px 0 11.3px;
  color: var(--green);
  font: 500 20px/25.9px "Noto Serif TC", serif;
}
.process-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 17.6px; }

.section { padding: 0; }
.metrics { margin-top: 200px; }
.stories, .faq, .contact { margin-top: 200px; }
.center-heading { margin-bottom: 68px; text-align: center; }
.center-heading h2 {
  margin: 0;
  font: 700 italic 50px/1 "Cormorant Garamond", serif;
}
.center-heading p { margin: 22px auto 0; color: var(--muted); font-size: 13px; line-height: 22.1px; }

.metric-grid { height: 500px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric-card {
  height: 500px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.metric-light { background: #eee2d1; }
.metric-taupe { background: #857b73; color: #fff; }
.metric-green { background: #526348; color: #fff; }
.metric-art { position: absolute; inset: 0; opacity: .2; border-radius: inherit; }
.metric-card strong {
  position: relative;
  z-index: 1;
  max-width: 100%;
  font: 400 72px/77.76px "Instrument Serif", "Noto Serif TC", serif;
  letter-spacing: 0;
  white-space: nowrap;
}
.metric-card strong .metric-unit {
  padding: 0;
  font: 400 50px/1 "Noto Serif TC", serif;
  vertical-align: baseline;
}
.metric-card strong .metric-symbol {
  padding: 0;
  font: 400 50px/1 "Instrument Serif", serif;
  vertical-align: baseline;
}
.metric-card span {
  position: relative;
  z-index: 1;
  padding: 8px 0;
  font: 500 15px/normal "Noto Serif TC", serif;
}

.story-row {
  min-height: 360px;
  display: flex;
  align-items: stretch;
  gap: 36px;
  justify-content: center;
}
.story-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  min-width: 210px;
  height: 360px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transition: transform .32s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease;
}
.story-card:focus-visible {
  outline: 2px solid rgba(16,16,15,.45);
  outline-offset: 4px;
}
.story-card:hover,
.story-card:focus-visible,
.story-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0,0,0,.18);
}
.story-card-media,
.story-card-overlay,
.story-card-tint {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.story-card-media {
  overflow: hidden;
  background: var(--story-base, #d8d0bf);
}
.story-card-media img {
  object-fit: cover;
  transition: opacity .32s ease;
}
.story-card-tint {
  background: var(--story-tint, rgba(147,171,152,.78));
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity .32s ease;
}
.story-card-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  color: #fff;
  background: var(--story-hover, #8ca290);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .32s ease, transform .38s cubic-bezier(.22,.61,.36,1);
}
.story-card:hover .story-card-overlay,
.story-card:focus-visible .story-card-overlay,
.story-card.is-active .story-card-overlay {
  opacity: 1;
  transform: translateY(0);
}
.story-card:hover .story-card-media img,
.story-card:hover .story-card-tint,
.story-card:focus-visible .story-card-media img,
.story-card:focus-visible .story-card-tint,
.story-card.is-active .story-card-media img,
.story-card.is-active .story-card-tint {
  opacity: 0;
}
.story-card-mark {
  width: 150px;
  height: 32px;
  font: 400 80px/32px "Instrument Serif", serif;
}
.story-card-quote {
  width: 150px;
  margin: 25px 0 0;
  padding: 25px 0;
  font: 400 14px/27.5px "Noto Serif TC", serif;
  text-align: left;
}
.story-card-cite {
  width: 150px;
  opacity: .7;
  font: 400 10px/1.2 Manrope, sans-serif;
  text-align: left;
}
.story-card-mark,
.story-card-quote,
.story-card-cite {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .38s cubic-bezier(.22,.61,.36,1);
}
.story-card:hover .story-card-mark,
.story-card:focus-visible .story-card-mark,
.story-card.is-active .story-card-mark,
.story-card:hover .story-card-quote,
.story-card:focus-visible .story-card-quote,
.story-card.is-active .story-card-quote,
.story-card:hover .story-card-cite,
.story-card:focus-visible .story-card-cite,
.story-card.is-active .story-card-cite {
  opacity: 1;
  transform: translateY(0);
}
.story-card:hover .story-card-quote,
.story-card:focus-visible .story-card-quote,
.story-card.is-active .story-card-quote { transition-delay: .04s; }
.story-card:hover .story-card-cite,
.story-card:focus-visible .story-card-cite,
.story-card.is-active .story-card-cite { opacity: .7; transition-delay: .08s; }
.story-card-hint,
.story-card-close,
.story-card-return { display: none; }

@media (prefers-reduced-motion: reduce) {
  .story-card,
  .story-card-media img,
  .story-card-tint,
  .story-card-overlay,
  .story-card-mark,
  .story-card-quote,
  .story-card-cite { transition: none; }
  .story-card:hover,
  .story-card:focus-visible,
  .story-card.is-active { transform: none; }
}

.faq {
  height: 440px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}
.faq-title h2, .contact h2 {
  margin: 0;
  font: 700 50px/53px "Noto Serif TC", serif;
  letter-spacing: -2.805px;
}
.faq-title p, .contact-copy > p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.faq-list details { padding: 22px 0 23px; border-bottom: 1px solid var(--line); }
.faq-list details[open] { padding-bottom: 35px; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font: 700 17px/normal "Noto Serif TC", serif;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font: 700 22px/1 Manrope, sans-serif; }
.faq-list details p { max-width: 560px; margin: 11.45px 0 0; color: var(--muted); font: 400 12px/20.4px "Noto Serif TC", serif; }

.contact {
  height: 526.5px;
  display: grid;
  grid-template-columns: 555px 555px;
  gap: 98px;
}
.contact-copy { height: 526.5px; }
.contact h2 { letter-spacing: -2.6px; }
.contact-grid {
  height: 358px;
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 150px 150px;
}
.contact-grid a {
  min-height: 150px;
  padding: 28.5px 20px 36.5px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
.contact-grid a:nth-child(even) { padding-left: 25px; }
.contact-grid span { color: var(--muted); font-size: 9px; }
.contact-grid b { padding-top: 16.5px; font-size: 17px; }
.contact-grid small { color: var(--muted); font-size: 10px; }
.contact-art {
  width: 555px;
  height: 389.358px;
  margin-top: 57.5px;
  border-radius: 22px;
  overflow: hidden;
}

.footer {
  height: 374px;
  margin-top: 229px;
  padding: 0;
  background: #0e0e0d;
  color: #fff;
}
.footer .container { width: min(1200px, calc(100% - 48px)); }
.footer-grid {
  height: 296.5px;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { color: #aaa; font-size: 11px; font-weight: 800; letter-spacing: -.44px; }
.footer-grid p, .footer-grid a { margin: 0; color: #aaa; font-size: 11px; }
.footer-grid b { margin-bottom: 12px; font-size: 12px; }
.footer-bottom {
  height: 77.5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 9px;
}
.footer-bottom div { display: flex; gap: 24px; }
.reveal {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(18px 0 0 0);
  transition:
    opacity .85s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    transform .85s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    clip-path .85s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}
.hero-copy.reveal {
  clip-path: none;
}
.hero-copy.reveal.visible {
  transform: none;
}
.hero-copy .hero-kicker,
.hero-copy h1,
.hero-copy > p:not(.hero-kicker),
.hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(28px);
  clip-path: inset(14px 0 0 0);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1),
    clip-path .9s cubic-bezier(.16, 1, .3, 1);
}
.hero-copy.visible .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}
.hero-copy.visible h1 {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
  transition-delay: .12s;
}
.hero-copy.visible > p:not(.hero-kicker) {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
  transition-delay: .26s;
}
.hero-copy.visible .hero-actions {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
  transition-delay: .38s;
}
.process-card.reveal.visible article,
.story-row.reveal.visible .story-card {
  animation: storyItemRise .72s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}
.process-card.reveal.visible article:nth-child(2) { animation-delay: 90ms; }
.process-card.reveal.visible article:nth-child(3) { animation-delay: 180ms; }
.story-row.reveal.visible .story-card:nth-child(2) { animation-delay: 80ms; }
.story-row.reveal.visible .story-card:nth-child(3) { animation-delay: 160ms; }
.story-row.reveal.visible .story-card:nth-child(4) { animation-delay: 240ms; }
.story-row.reveal.visible .story-card:nth-child(5) { animation-delay: 320ms; }
.metric-card.visible {
  box-shadow: 0 22px 50px rgba(16, 16, 15, .08);
}

@keyframes artSceneReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .plan-card { transition: none; }
  .plan-card:hover,
  .plan-card:focus-within { transform: none; }
  .plan-card.plan-featured:hover,
  .plan-card.plan-featured:focus-within { transform: translateY(-22px); }
}

.standalone-page { min-height: 100vh; }
.standalone-main { min-height: calc(100vh - 120px); padding: 150px 0 120px; }
.standalone-main > span { color: #8f8173; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.standalone-main h1 { margin: 28px 0 24px; font: 500 76px/1.1 "Noto Serif TC", serif; letter-spacing: -.04em; }
.standalone-main p { max-width: 560px; margin: 0; color: var(--muted); font: 400 16px/2 "Noto Serif TC", serif; }

@media (max-width: 900px) {
  body.home-page::after { display: none; }
  .container, .nav, .footer .container { width: min(100% - 32px, 720px); }
  .nav {
    height: 74px;
    grid-template-columns: auto 1fr auto;
    clip-path: none;
    overflow: visible;
    box-shadow: 0 1px rgba(16,16,15,.07);
  }
  .nav-links, .nav-cta, .nav-actions .payment-back { display: none; }
  .logo { grid-column: 2; justify-self: center; }
  .nav-actions { grid-column: 3; }
  .nav-actions { display: flex; gap: 7px; }
  .menu-toggle { display: block; width: 40px; height: 40px; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: #111; }
  .nav.open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    z-index: 120;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,250,241,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 18px 40px rgba(16,16,15,.12);
  }
  .nav.open .nav-links a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(16,16,15,.08);
    font-size: 16px;
  }
  .nav.open .nav-links a:last-child { border-bottom: 0; }
  .hero-kicker { font-size: 44px; line-height: 1.2; }
  .hero h1 { font-size: 50px; line-height: 1.2; }
  .hero-copy > p:not(.hero-kicker) { width: auto; margin: 22px auto 20px; font-size: 14px; line-height: 1.9; }
  .art-scene { height: 420px; margin-top: 84px; }
  .process-card { grid-template-columns: 1fr; gap: 0; padding: 30px; }
  .process-card article { border-right: 0; border-bottom: 1px solid var(--line); padding: 25px 0; }
  .metrics, .stories, .faq, .contact { margin-top: 120px; }
  .metric-grid { height: auto; grid-template-columns: 1fr; }
  .metric-card { height: 420px; }
  .story-row { overflow-x: auto; justify-content: flex-start; min-height: auto; padding-bottom: 12px; gap: 36px; }
  .story-card { flex: 0 0 210px; min-width: 210px; }
  .faq { height: auto; grid-template-columns: 1fr; gap: 60px; }
  .contact { width: min(100% - 32px, 720px); height: auto; grid-template-columns: 1fr; gap: 50px; }
  .contact-copy, .contact-art { width: 100%; height: auto; }
  .contact-art { aspect-ratio: 555/389; margin-top: 0; }
  .footer { height: auto; margin-top: 140px; }
  .footer-grid { height: auto; grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .story-row {
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
  .story-card {
    scroll-snap-align: start;
    touch-action: pan-x;
    transform: none !important;
  }
  .story-card-hint {
    display: block;
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 16px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(255,250,241,.84);
    color: #514d47;
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
    font: 600 10px "Noto Serif TC", serif;
    white-space: nowrap;
    transition: opacity .25s ease;
  }
  .story-card-overlay { z-index: 4; padding: 28px; }
  .story-card-close {
    display: grid;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 16px;
    right: 16px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    font: 300 18px/1 Manrope, sans-serif;
  }
  .story-card-return {
    display: block;
    margin-top: 18px;
    opacity: .7;
    font: 500 9px "Noto Serif TC", serif;
  }
  .story-card:not(.is-active):hover .story-card-overlay,
  .story-card:not(.is-active):focus-visible .story-card-overlay {
    opacity: 0 !important;
    transform: translateY(6px) !important;
  }
  .story-card:not(.is-active):hover .story-card-media img,
  .story-card:not(.is-active):hover .story-card-tint,
  .story-card:not(.is-active):focus-visible .story-card-media img,
  .story-card:not(.is-active):focus-visible .story-card-tint { opacity: 1 !important; }
  .story-card.is-active .story-card-overlay {
    display: flex;
    visibility: visible;
    opacity: 1 !important;
    transform: none !important;
  }
  .story-card.is-active .story-card-media img,
  .story-card.is-active .story-card-tint,
  .story-card.is-active .story-card-hint { opacity: 0 !important; }
  .story-card.is-active .story-card-mark,
  .story-card.is-active .story-card-quote,
  .story-card.is-active .story-card-cite { opacity: 1; transform: none; }
  .story-card.is-active .story-card-cite { opacity: .72; }
}

@media (max-width: 560px) {
  .topline { font-size: 7px; }
  .hero { padding-top: 28px; }
  .hero-kicker { font-size: 31px; }
  .hero h1 { font-size: 38px; letter-spacing: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions > * { width: 100%; }
  .dark-button, .hero-contact-button { min-height: 52px; }
  .hero-copy > p:not(.hero-kicker) br { display: none; }
  .hero-copy > p:not(.hero-kicker) { margin: 18px auto 22px; font-size: 13px; line-height: 1.85; }
  .art-scene { height: 290px; margin-top: 56px; border-radius: 22px; }
  .process-card { width: calc(100% - 24px); margin-top: -26px; padding: 20px; border-radius: 20px; }
  .process-card h2 { margin: 18px 0 8px; font-size: 18px; line-height: 1.45; }
  .process-card p { font-size: 10px; line-height: 1.7; }
  .metrics, .stories, .faq, .contact { margin-top: 96px; }
  .center-heading { margin-bottom: 40px; }
  .center-heading h2 { font-size: 39px; }
  .metric-card strong { font-size: 58px; line-height: 62.64px; }
  .metric-card strong { white-space: normal; }
  .metric-card strong .metric-unit,
  .metric-card strong .metric-symbol { font-size: 40px; }
  .metric-card { height: 340px; padding: 24px; }
  .metric-card span { font-size: 14px; }
  .story-row {
    gap: 20px;
    margin-inline: -16px;
    padding: 0 16px 12px;
    scroll-snap-type: x proximity;
  }
  .story-card {
    width: 180px;
    min-width: 180px;
    height: 309px;
    flex-basis: 180px;
    scroll-snap-align: start;
  }
  .faq-title h2, .contact h2 { font-size: 40px; }
  .contact-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: repeat(4, 130px); }
  .contact-grid a:nth-child(odd) { border-right: 0; }
  .contact-grid a:nth-child(even) { padding-left: 0; }
  .footer-grid { padding: 60px 0; grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { height: auto; padding: 20px 0 32px; flex-direction: column; gap: 14px; }
}

/* Figma H5 — node 311:140 */
@media (max-width: 560px) {
  .topline { display: none; }
  .nav {
    width: 100%;
    height: 64px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
    background: #fffbf3;
    box-shadow: none;
  }
  .nav .logo {
    position: absolute;
    left: 50%;
    grid-column: auto;
    transform: translateX(-50%);
    font-size: 18px;
  }
  .nav-actions { grid-column: 2; gap: 0; }
  .language-switcher { padding: 4px; }
  .language-switcher button { min-width: 30px; height: 26px; padding: 0 9px; font-size: 12px; }
  .menu-toggle { width: 32px; height: 32px; position: absolute; left: 12px; top: 16px; }
  .menu-toggle span { width: 18px; margin: 10px auto; }
  .nav.open .nav-links { top: 72px; left: 12px; right: 12px; }

  .home-page .hero {
    width: 100%;
    max-width: 440px;
    padding-top: 104px;
  }
  .home-page .hero-copy { width: 100%; }
  .home-page .hero-kicker,
  .home-page .hero h1 {
    width: calc(100% + 4px);
    margin-inline: -2px;
    font-size: 26px;
    line-height: 40.3px;
    letter-spacing: .31px;
  }
  .home-page .hero h1 { margin-top: 4px; padding-bottom: 25px; }
  .home-page .hero-copy > p:not(.hero-kicker) {
    width: min(341px, calc(100% - 40px));
    margin: 0 auto;
    font-size: 16px;
    line-height: 31.45px;
  }
  .home-page .hero-actions {
    padding-top: 20px;
    flex-direction: row;
    gap: 12px;
  }
  .home-page .hero-actions > * { width: auto; }
  .home-page .hero-actions .dark-button { min-height: 53px; padding: 14px 10px 14px 24px; font-size: 14px; }
  .home-page .hero-actions .hero-contact-button { min-height: 53px; padding: 0 25px; font-size: 13px; }
  .home-page .art-scene {
    width: 284px;
    height: 164px;
    margin: 60px auto 0;
    border-radius: 10px;
  }
  .home-page .process-card {
    width: 313px;
    min-height: 0;
    margin-top: -10px;
    padding: 0;
    gap: 0;
    border-radius: 20px;
  }
  .home-page .process-card article {
    min-height: 0;
    padding: 26px 20px;
    border-bottom: .5px solid var(--line);
  }
  .home-page .process-card article:last-child { padding: 26px 20px; border-bottom: 0; }
  .home-page .process-card span { font-size: 10px; line-height: normal; letter-spacing: .8px; }
  .home-page .process-card h2 { margin: 20px 0 10px; font-size: 14px; line-height: 25.9px; }
  .home-page .process-card p { font-size: 11px; line-height: 17.6px; }

  .home-page .metrics { width: 315px; margin-top: 100px; }
  .home-page .stories { width: 315px; margin-top: 100px; }
  .home-page .faq,
  .home-page .contact { width: calc(100% - 40px); margin-top: 100px; }
  .home-page .center-heading { margin-bottom: 24px; }
  .home-page .center-heading h2 { font-size: 30px; line-height: 50px; }
  .home-page .center-heading p { margin-top: 0; font-size: 14px; line-height: 22px; white-space: nowrap; }
  .home-page .metric-grid { gap: 12px; }
  .home-page .metric-card { width: 315px; height: 315px; padding: 22px; border-radius: 22px; }
  .home-page .metric-card strong { font-size: 50px; line-height: 69px; }
  .home-page .metric-card strong .metric-unit { font-size: 20px; }
  .home-page .metric-card strong .metric-symbol { font-size: 30px; }
  .home-page .metric-card > span { padding: 6px 0; font-size: 11.8px; white-space: nowrap; }
  .home-page .story-row {
    width: calc(100vw - 1px);
    margin-left: calc((315px - 100vw) / 2);
    margin-right: 0;
    padding: 0 0 14px calc((100vw - 315px) / 2);
    gap: 22px;
  }
  .home-page .story-card { width: 210px; min-width: 210px; height: 360px; }
  .home-page .faq-title h2,
  .home-page .contact h2 { font-size: 30px; line-height: 1.25; letter-spacing: -.04em; }
  .home-page .faq-title p,
  .home-page .contact-copy > p { font-size: 10px; }
  .home-page .faq { gap: 38px; }
  .home-page .faq-list summary { font-size: 13px; }
  .home-page .faq-list details { padding: 20px 0; }
  .home-page .faq-list details p { font-size: 10px; line-height: 18px; }
  .home-page .contact-grid { margin-top: 44px; }
  .home-page .contact-grid b { font-size: 13px; }
  .home-page .contact-grid small { font-size: 9px; }
  .home-page .footer { margin-top: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page::after { display: none; }
  .reveal,
  .reveal.visible,
  .hero-copy .hero-kicker,
  .hero-copy h1,
  .hero-copy > p:not(.hero-kicker),
  .hero-copy .hero-actions,
  .art-scene,
  .art-scene img,
  .metric-art,
  .contact-art img {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none;
    transition: none;
  }
}

/* Crystal shop */
.shop-page,
.product-page { background: #fffaf1; }
.eyebrow { color: #8e8175; font: 700 9px/1 Manrope, sans-serif; letter-spacing: .18em; }
.shop-hero {
  min-height: 520px;
  padding: 122px 0 96px;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 80px;
}
.shop-hero h1 {
  margin: 28px 0 0;
  font: 400 72px/1.08 "Noto Serif TC", serif;
  letter-spacing: -.055em;
}
.shop-hero h1 em { color: #9b8977; font-weight: 300; font-style: normal; }
.shop-hero-copy { padding: 0 0 8px 34px; border-left: 1px solid var(--line); }
.shop-hero-copy p { margin: 0 0 34px; color: var(--muted); font: 400 14px/1.9 "Noto Serif TC", serif; }
.shop-hero-copy a { display: inline-flex; align-items: center; gap: 45px; padding-bottom: 8px; border-bottom: 1px solid #111; font: 600 12px "Noto Serif TC", serif; }
.shop-feature { min-height: 680px; position: relative; overflow: hidden; border-radius: 30px; background: #e8dfd3; }
.shop-feature > img { position: absolute; inset: 0; }
.shop-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,8,.42), transparent 64%); }
.shop-feature-card {
  width: 390px;
  position: absolute;
  z-index: 2;
  left: 50px;
  bottom: 50px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  background: rgba(255,250,241,.9);
  backdrop-filter: blur(18px);
}
.shop-feature-card > span { color: #7c6f64; font: 700 8px Manrope, sans-serif; letter-spacing: .16em; }
.shop-feature-card h2 { margin: 18px 0 10px; font: 500 34px/1.2 "Noto Serif TC", serif; }
.shop-feature-card p { margin: 0; color: var(--muted); font: 400 13px/1.8 "Noto Serif TC", serif; }
.shop-feature-card div { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.shop-feature-card b { font: 400 28px Instrument Serif, serif; }
.shop-feature-card a { font: 600 12px "Noto Serif TC", serif; }
.shop-collection { padding-top: 150px; }
.shop-collection-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; }
.shop-collection-head h2 { margin: 20px 0 0; font: 400 48px/1.18 "Noto Serif TC", serif; letter-spacing: -.04em; }
.shop-filters { display: flex; gap: 6px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.shop-filters button { min-width: 62px; height: 34px; border: 0; border-radius: 999px; background: transparent; color: #77736b; cursor: pointer; font: 600 11px "Noto Serif TC", serif; }
.shop-filters button.active { background: #11110f; color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
.product-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.product-card[hidden] { display: none; }
.product-image { height: 480px; position: relative; display: block; overflow: hidden; border-radius: 24px; background: #eee6da; }
.product-image img { transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.product-image:hover img { transform: scale(1.035); }
.product-image > span { position: absolute; top: 18px; left: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(255,250,241,.9); font: 700 9px Manrope, sans-serif; letter-spacing: .08em; }
.product-meta { padding: 20px 2px 0; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.product-meta small { color: #9b8e83; font: 700 8px Manrope, sans-serif; letter-spacing: .14em; }
.product-meta h3 { margin: 8px 0 0; font: 500 21px "Noto Serif TC", serif; }
.product-meta > b { flex: 0 0 auto; font: 400 24px Instrument Serif, serif; }
.shop-note { max-width: 560px; margin: 70px auto 0; color: #948c82; font: 400 11px/1.8 "Noto Serif TC", serif; text-align: center; }
.shop-footer { margin-top: 150px; }

/* Product detail */
.product-main { padding-top: 32px; }
.product-back { display: inline-block; margin: 12px 0 28px; color: #746f68; font: 500 11px "Noto Serif TC", serif; }
.product-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: start; }
.product-main-image { height: 710px; overflow: hidden; border-radius: 28px; background: #eee6da; }
.product-main-image img { transition: transform .45s cubic-bezier(.2,.65,.3,1); }
.product-main-image img.detail-zoom { transform: scale(1.35); }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-thumbs button { width: 78px; height: 78px; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 13px; background: #eee6da; cursor: pointer; opacity: .65; }
.product-thumbs button.active { border-color: #111; opacity: 1; }
.product-thumbs button:nth-child(2) img { transform: scale(1.75); }
.product-info { padding: 66px 18px 0 0; position: sticky; top: 86px; }
.product-info h1 { margin: 22px 0 10px; font: 400 55px/1.18 "Noto Serif TC", serif; letter-spacing: -.05em; }
.product-subtitle { margin: 0; color: var(--muted); font: 400 14px/1.9 "Noto Serif TC", serif; }
.product-price { margin: 38px 0 34px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.product-price b { font: 400 35px Instrument Serif, serif; }
.product-price span { color: #8e867e; font: 400 10px "Noto Serif TC", serif; }
.product-option > div:first-child { display: flex; justify-content: space-between; }
.product-option b { font: 600 12px "Noto Serif TC", serif; }
.product-option small { color: #8f867d; font: 400 10px "Noto Serif TC", serif; }
.size-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 14px; }
.size-options button { height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; font-size: 11px; }
.size-options button.active { border-color: #111; background: #111; color: #fff; }
.product-buy-row { display: grid; grid-template-columns: 104px 1fr; gap: 10px; margin-top: 30px; }
.quantity-stepper { height: 56px; padding: 0 9px; border: 1px solid var(--line); border-radius: 999px; display: flex; align-items: center; justify-content: space-between; }
.quantity-stepper button { width: 26px; height: 30px; border: 0; background: transparent; cursor: pointer; font-size: 16px; }
.quantity-stepper output { font-size: 12px; }
.product-buy { height: 56px; padding: 0 9px 0 25px; border: 0; border-radius: 999px; background: #11110f; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font: 600 13px "Noto Serif TC", serif; }
.product-buy span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.13); }
.product-shipping { margin: 13px 0 0; color: #948c82; font: 400 9px "Noto Serif TC", serif; text-align: center; }
.product-accordions { margin-top: 38px; border-top: 1px solid var(--line); }
.product-accordions details { border-bottom: 1px solid var(--line); }
.product-accordions summary { padding: 20px 0; list-style: none; cursor: pointer; display: flex; justify-content: space-between; font: 600 12px "Noto Serif TC", serif; }
.product-accordions summary::-webkit-details-marker { display: none; }
.product-accordions details[open] summary span { transform: rotate(45deg); }
.product-accordions summary span { transition: transform .2s ease; }
.product-accordions details p { margin: -4px 0 22px; color: var(--muted); font: 400 11px/1.9 "Noto Serif TC", serif; }
.product-story { margin-top: 170px; padding: 105px; border-radius: 28px; background: #526348; color: #fff; text-align: center; }
.product-story .eyebrow { color: rgba(255,255,255,.55); }
.product-story h2 { margin: 28px 0 22px; font: 300 50px/1.35 "Noto Serif TC", serif; letter-spacing: -.04em; }
.product-story p { max-width: 580px; margin: 0 auto; color: rgba(255,255,255,.72); font: 300 13px/2 "Noto Serif TC", serif; }
.related-products { padding: 150px 0 40px; }
.related-products > div:first-child { margin-bottom: 38px; }
.related-products h2 { margin: 16px 0 0; font: 400 42px "Noto Serif TC", serif; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related-grid a img { height: 470px; border-radius: 22px; transition: transform .4s ease; }
.related-grid a:hover img { transform: translateY(-5px); }
.related-grid a span { padding: 16px 2px 0; display: flex; justify-content: space-between; font: 500 16px "Noto Serif TC", serif; }
.related-grid a b { font: 400 22px Instrument Serif, serif; }
.bag-toast { position: fixed; z-index: 200; left: 50%; bottom: 30px; padding: 14px 24px; border-radius: 999px; background: #111; color: #fff; font: 600 12px "Noto Serif TC", serif; opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: opacity .25s ease, transform .25s ease; }
.bag-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Shopping bag */
.cart-nav-link { position: relative; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: #fffaf1; font: 500 15px/1 Manrope, sans-serif; }
.cart-nav-link::before { content: ""; width: 11px; height: 10px; border: 1.2px solid currentColor; border-radius: 2px; }
.cart-nav-link::after { content: ""; width: 5px; height: 4px; position: absolute; top: 7px; left: 13px; border: 1.2px solid currentColor; border-bottom: 0; border-radius: 5px 5px 0 0; }
.cart-nav-link span { min-width: 17px; height: 17px; padding: 0 4px; position: absolute; top: -6px; right: -6px; border-radius: 999px; background: #526348; color: #fff; display: grid; place-items: center; font: 700 8px Manrope, sans-serif; }
.cart-nav-link span:empty,
.cart-nav-link span[data-empty="true"] { display: none; }
.cart-main { padding-top: 90px; min-height: 720px; }
.cart-head { padding-bottom: 54px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: end; }
.cart-head h1 { margin: 20px 0 0; font: 400 58px/1.1 "Noto Serif TC", serif; letter-spacing: -.05em; }
.cart-head > a { padding-bottom: 7px; border-bottom: 1px solid #111; font: 600 11px "Noto Serif TC", serif; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 72px; padding-top: 44px; align-items: start; }
.cart-items { min-width: 0; }
.cart-item { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr auto; gap: 26px; align-items: center; }
.cart-item-image { width: 150px; height: 150px; overflow: hidden; border-radius: 18px; background: #eee6da; }
.cart-item-info small { color: #8e8175; font: 700 8px Manrope, sans-serif; letter-spacing: .14em; }
.cart-item-info h2 { margin: 10px 0 8px; font: 500 23px "Noto Serif TC", serif; }
.cart-item-info p { margin: 0; color: var(--muted); font: 400 11px "Noto Serif TC", serif; }
.cart-item-info button { margin-top: 23px; padding: 0 0 4px; border: 0; border-bottom: 1px solid #aaa39b; background: transparent; color: #807970; cursor: pointer; font: 400 10px "Noto Serif TC", serif; }
.cart-item-end { align-self: stretch; display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.cart-item-end b { font: 400 26px Instrument Serif, serif; }
.cart-item .quantity-stepper { width: 104px; }
.cart-summary { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #f5eee3; position: sticky; top: 110px; }
.cart-summary h2 { margin: 18px 0 30px; font: 500 27px "Noto Serif TC", serif; }
.cart-summary > div { padding: 15px 0; display: flex; justify-content: space-between; color: #706a63; font: 400 11px "Noto Serif TC", serif; }
.cart-summary > div b { color: #111; font-weight: 500; }
.cart-summary .cart-total { margin-top: 10px; padding-top: 24px; border-top: 1px solid var(--line); color: #111; font-size: 13px; }
.cart-summary .cart-total b { font: 400 28px Instrument Serif, serif; }
.cart-summary > button { width: 100%; height: 55px; margin-top: 24px; padding: 0 9px 0 22px; border: 0; border-radius: 999px; background: #111; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font: 600 12px "Noto Serif TC", serif; }
.cart-summary > button i { width: 37px; height: 37px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; font-style: normal; }
.cart-summary > p { margin: 15px 0 0; color: #8e867e; font: 400 9px/1.7 "Noto Serif TC", serif; text-align: center; }
.cart-empty { padding: 100px 0 140px; text-align: center; }
.cart-empty > span { font-size: 28px; color: #978778; }
.cart-empty h2 { margin: 24px 0 12px; font: 500 34px "Noto Serif TC", serif; }
.cart-empty p { margin: 0 0 30px; color: var(--muted); font: 400 12px "Noto Serif TC", serif; }
.cart-empty .dark-button { width: fit-content; margin: auto; }

@media (max-width: 900px) {
  .cart-nav-link { position: fixed; z-index: 150; right: 18px; bottom: 18px; width: 48px; height: 48px; border-color: rgba(255,255,255,.2); background: #111; color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
  .cart-nav-link::before { width: 14px; height: 13px; }
  .cart-nav-link::after { width: 7px; height: 5px; top: 10px; left: 20px; }
  .cart-nav-link span { top: -4px; right: -3px; }
  .cart-page .cart-nav-link { display: none; }
  .cart-layout { grid-template-columns: 1fr; gap: 45px; }
  .cart-summary { position: static; }
}

@media (max-width: 560px) {
  .cart-main { padding-top: 58px; }
  .cart-head { padding-bottom: 34px; display: block; }
  .cart-head h1 { font-size: 42px; }
  .cart-head > a { display: inline-block; margin-top: 26px; }
  .cart-layout { padding-top: 30px; }
  .cart-item { grid-template-columns: 104px 1fr; gap: 17px; align-items: start; }
  .cart-item-image { width: 104px; height: 116px; border-radius: 14px; }
  .cart-item-info h2 { font-size: 19px; }
  .cart-item-info button { margin-top: 14px; }
  .cart-item-end { grid-column: 1 / -1; flex-direction: row-reverse; align-items: center; }
  .cart-summary { padding: 26px; }
}

@media (max-width: 900px) {
  .shop-hero { min-height: auto; padding: 90px 0 70px; grid-template-columns: 1fr; gap: 45px; }
  .shop-hero h1 { font-size: 56px; }
  .shop-hero-copy { max-width: 500px; }
  .shop-feature { min-height: 580px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-image { height: 440px; }
  .product-layout { grid-template-columns: 1fr; gap: 20px; }
  .product-info { padding: 40px 0 0; position: static; }
  .product-main-image { height: min(90vw, 700px); }
}

@media (max-width: 560px) {
  .shop-hero { padding: 64px 0 54px; gap: 34px; }
  .shop-hero h1 { margin-top: 20px; font-size: 40px; line-height: 1.2; }
  .shop-hero-copy { padding-left: 20px; }
  .shop-feature { min-height: 510px; border-radius: 22px; }
  .shop-feature::after { background: linear-gradient(0deg, rgba(10,10,8,.35), transparent 70%); }
  .shop-feature-card { width: calc(100% - 28px); left: 14px; bottom: 14px; padding: 24px; }
  .shop-feature-card h2 { font-size: 27px; }
  .shop-collection { padding-top: 95px; }
  .shop-collection-head { display: block; margin-bottom: 34px; }
  .shop-collection-head h2 { font-size: 36px; }
  .shop-filters { margin-top: 30px; overflow-x: auto; }
  .shop-filters button { min-width: 66px; }
  .product-grid { grid-template-columns: 1fr; gap: 50px; }
  .product-image { height: 440px; }
  .shop-note { margin-top: 55px; }
  .shop-footer { margin-top: 100px; }
  .product-main { padding-top: 14px; }
  .product-main-image { height: 440px; border-radius: 22px; }
  .product-thumbs button { width: 66px; height: 66px; }
  .product-info { padding-top: 30px; }
  .product-info h1 { font-size: 40px; }
  .product-price { margin: 28px 0; }
  .product-price b { font-size: 31px; }
  .product-buy-row { grid-template-columns: 1fr; }
  .quantity-stepper { max-width: 128px; }
  .product-story { margin-top: 100px; padding: 70px 22px; }
  .product-story h2 { font-size: 34px; }
  .related-products { padding-top: 100px; }
  .related-products h2 { font-size: 32px; }
  .related-grid { grid-template-columns: 1fr; gap: 42px; }
  .related-grid a img { height: 440px; }
}

/* Services & Pricing */
.pricing-page .nav-links a { font-weight: 400; position: static; }
.pricing-page .nav-links .active { font-weight: 700; }
.pricing-page .nav-links .active::after { display: none; content: none; }
.pricing-hero {
  min-height: 690px;
  padding: 130px 0 110px;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 120px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.pricing-eyebrow, .pricing-section-head span, .included-title > span, .pricing-note > span {
  display: block;
  margin-bottom: 28px;
  color: #8f8173;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.pricing-hero h1 {
  margin: 0;
  font: 600 76px/1.13 "Noto Serif TC", serif;
  letter-spacing: -.055em;
}
.pricing-hero h1 em { color: #9a8878; font-weight: 300; font-style: normal; }
.pricing-intro { max-width: 620px; margin: 44px 0 0; color: var(--muted); font: 400 16px/2 "Noto Serif TC", serif; }
.pricing-hero-aside { padding-left: 34px; border-left: 1px solid var(--line); }
.pricing-hero-aside > span { color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.pricing-hero-aside > p { margin: 24px 0 60px; font: 500 17px/1.7 "Noto Serif TC", serif; }
.pricing-hero-aside > div { display: flex; flex-direction: column; }
.pricing-hero-aside b { font: 400 52px/1 "Instrument Serif", serif; }
.pricing-hero-aside small { margin-top: 8px; color: var(--muted); font: 500 11px "Noto Serif TC", serif; }
.pricing-section { padding: 170px 0 190px; }
.pricing-section-head { margin-bottom: 68px; display: flex; justify-content: space-between; align-items: end; }
.pricing-section-head span { margin-bottom: 20px; }
.pricing-section-head h2 { margin: 0; font: 700 50px/1.1 "Noto Serif TC", serif; letter-spacing: -.04em; }
.pricing-section-head > p { width: 380px; margin: 0; color: var(--muted); font: 400 13px/1.8 "Noto Serif TC", serif; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card {
  min-height: 720px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f8f1e7;
  transition: transform .28s ease, box-shadow .28s ease;
}
.plan-card.plan-async { background: #e5ddcf; }
.plan-card.plan-featured { background: #526348; color: #fff; transform: translateY(-22px); box-shadow: 0 30px 80px rgba(45,55,40,.18); }
.plan-card:hover,
.plan-card:focus-within { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(45,55,40,.15); }
.plan-card.plan-featured:hover,
.plan-card.plan-featured:focus-within { transform: translateY(-30px); box-shadow: 0 22px 40px rgba(45,55,40,.22); }
.popular-badge { position: absolute; top: 22px; right: 22px; padding: 8px 12px; border-radius: 999px; background: #f1e4c9; color: #526348; font: 700 10px "Noto Serif TC", serif; }
.plan-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.plan-featured .plan-top { color: rgba(255,255,255,.65); }
.plan-title { margin-top: 62px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.plan-featured .plan-title { border-color: rgba(255,255,255,.18); }
.plan-title h3 { margin: 0; font: 600 30px/1.25 "Noto Serif TC", serif; }
.plan-title p { margin: 10px 0 0; color: var(--muted); font: 400 12px "Noto Serif TC", serif; }
.plan-featured .plan-title p { color: rgba(255,255,255,.66); }
.price { display: flex; align-items: flex-start; gap: 7px; }
.plan-card > .price { margin: 30px 0 34px; }
.price sup { margin-top: 10px; font-size: 10px; font-weight: 700; }
.price strong { font: 400 56px/1 "Instrument Serif", serif; letter-spacing: -.04em; }
.plan-card dl { margin: 0 0 30px; }
.plan-card dl > div { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 13px 0; border-top: 1px solid var(--line); }
.plan-featured dl > div { border-color: rgba(255,255,255,.18); }
.plan-card dt { color: #8f8173; font: 700 11px "Noto Serif TC", serif; }
.plan-featured dt { color: #d8c9ab; }
.plan-card dd { margin: 0; font: 400 12px/1.7 "Noto Serif TC", serif; }
.plan-button { margin-top: auto; padding: 16px 18px; border-radius: 999px; background: #11120f; color: #fff; display: flex; justify-content: space-between; align-items: center; font: 700 12px "Noto Serif TC", serif; }
.plan-button.light { background: #fffaf1; color: #263021; }
.plan-button i { font-style: normal; font-size: 16px; }
.annual-section { padding: 150px 0; background: #11120f; color: #fff; }
.annual-head { margin-bottom: 56px; }
.annual-head span { color: #a9a69c; }
.annual-head > p { color: #898b84; }
.annual-grid { display: grid; gap: 14px; }
.annual-card { min-height: 280px; padding: 34px; border: 1px solid #33352f; border-radius: 24px; display: grid; grid-template-columns: 80px 1fr 260px; gap: 36px; align-items: center; background: #171814; transition: transform .28s ease, box-shadow .28s ease; }
.annual-card.annual-full { background: #4f5e45; border-color: #6c7b62; }
.annual-card:hover,
.annual-card:focus-within { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(17,18,15,.2); }
@media (prefers-reduced-motion: reduce) {
  .annual-card { transition: none; }
  .annual-card:hover,
  .annual-card:focus-within { transform: none; }
}
.annual-number { align-self: stretch; padding-top: 4px; border-right: 1px solid #393b35; color: #81837b; font-size: 10px; }
.annual-full .annual-number { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.6); }
.annual-content > span { color: #9b9d94; font-size: 9px; letter-spacing: .14em; }
.annual-content h3 { margin: 18px 0 8px; font: 600 30px "Noto Serif TC", serif; }
.annual-meta { color: #a9aa9f!important; }
.annual-content p { max-width: 540px; margin: 10px 0; color: #d2d2cc; font: 400 12px/1.7 "Noto Serif TC", serif; }
.annual-buy { justify-self: end; text-align: right; }
.annual-buy .price { justify-content: flex-end; }
.annual-buy a { display: inline-block; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.45); font: 600 11px "Noto Serif TC", serif; }
.booking-section { margin-top: 180px; padding: 78px 70px; border-radius: 30px; background: #ede3d4; display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.booking-intro > span { color: #8f8173; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.booking-intro h2 { margin: 28px 0 20px; font: 600 48px/1.25 "Noto Serif TC", serif; letter-spacing: -.04em; }
.booking-intro > p { max-width: 330px; margin: 0; color: #746d64; font: 400 12px/1.8 "Noto Serif TC", serif; }
.booking-summary { margin-top: 62px; padding-top: 24px; border-top: 1px solid rgba(16,16,15,.18); display: grid; grid-template-columns: 1fr auto; align-items: end; }
.booking-summary small { grid-column: 1/-1; margin-bottom: 18px; color: #8f8173; font-size: 9px; }
.booking-summary strong { font: 600 19px "Noto Serif TC", serif; }
.booking-summary b { font: 400 30px "Instrument Serif", serif; }
.booking-form { padding: 38px; border-radius: 24px; background: #fffaf1; }
.booking-form label { display: block; margin-bottom: 24px; color: #665f57; font: 600 10px "Noto Serif TC", serif; }
.booking-form input:not([type="checkbox"]), .booking-form select, .booking-form textarea { width: 100%; margin-top: 10px; padding: 13px 0; border: 0; border-bottom: 1px solid #cfc5b8; border-radius: 0; outline: 0; background: transparent; color: #10100f; font: 400 13px "Noto Serif TC", serif; }
.booking-form textarea { height: 90px; resize: vertical; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.booking-consent { display: flex!important; gap: 10px; align-items: flex-start; font-weight: 400!important; line-height: 1.6!important; }
.booking-consent input { margin-top: 3px; accent-color: #526348; }
.booking-submit { width: 100%; padding: 16px 18px; border: 0; border-radius: 999px; background: #11120f; color: #fff; display: flex; justify-content: space-between; cursor: pointer; font: 700 12px "Noto Serif TC", serif; }
.booking-submit i { font-style: normal; font-size: 16px; }
.booking-status { margin: 18px 0 0; color: #526348; font: 600 11px/1.6 "Noto Serif TC", serif; text-align: center; }
.included-section { padding: 180px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.included-title h2 { margin: 0; font: 600 48px/1.3 "Noto Serif TC", serif; letter-spacing: -.04em; }
.included-list article { min-height: 150px; padding: 28px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 70px 1fr; gap: 20px; }
.included-list article > span { color: var(--muted); font-size: 9px; }
.included-list h3 { margin: 0 0 12px; font: 600 19px "Noto Serif TC", serif; }
.included-list p { max-width: 520px; margin: 0; color: var(--muted); font: 400 12px/1.8 "Noto Serif TC", serif; }
.pricing-faq { padding: 0 0 170px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.pricing-faq .faq-title h2 { line-height: 1.25; }
.pricing-note { min-height: 330px; padding: 66px 70px; border-radius: 28px; background: #ede3d4; display: grid; grid-template-columns: 160px 1fr auto; gap: 50px; align-items: center; }
.pricing-note > span { margin: 0; }
.pricing-note > p { max-width: 620px; margin: 0; color: #665f57; font: 500 17px/1.9 "Noto Serif TC", serif; }
.pricing-footer { margin-top: 170px; }

@media (max-width: 900px) {
  .pricing-hero { min-height: auto; padding: 100px 0; grid-template-columns: 1fr; gap: 70px; }
  .pricing-hero h1 { font-size: 60px; }
  .pricing-hero-aside { max-width: 420px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 26px; }
  .plan-card { min-height: 650px; }
  .plan-card.plan-featured { transform: none; }
  .annual-card { grid-template-columns: 50px 1fr; }
  .annual-buy { grid-column: 2; justify-self: start; text-align: left; }
  .annual-buy .price { justify-content: flex-start; }
  .included-section, .pricing-faq { grid-template-columns: 1fr; gap: 70px; }
  .booking-section { grid-template-columns: 1fr; gap: 60px; }
  .pricing-note { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .pricing-hero { padding: 70px 0 90px; }
  .pricing-hero h1 { font-size: 44px; }
  .pricing-intro { font-size: 14px; }
  .pricing-section { padding: 110px 0 130px; }
  .pricing-section-head { display: block; }
  .pricing-section-head > p { width: auto; margin-top: 24px; }
  .plan-card { min-height: auto; padding: 24px; }
  .annual-section { padding: 110px 0; }
  .annual-card { padding: 26px 22px; grid-template-columns: 1fr; }
  .annual-number { border-right: 0; border-bottom: 1px solid #393b35; padding-bottom: 18px; }
  .annual-buy { grid-column: 1; }
  .included-section { padding: 120px 0; }
  .booking-section { margin-top: 110px; padding: 44px 24px; }
  .booking-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 28px 20px; }
  .included-title h2 { font-size: 38px; }
  .pricing-faq { padding-bottom: 120px; }
  .pricing-note { padding: 42px 28px; border-radius: 20px; }
  .pricing-note > p { font-size: 14px; }
  .pricing-footer { margin-top: 110px; }
}

/* Figma node 45:236 — exact desktop composition */
.pricing-figma-page .nav-links .active::after {
  display: none;
  content: none;
}
.pricing-figma-page .pricing-main {
  width: 100%;
  height: 2235px;
  position: relative;
}
.pricing-figma-page .pricing-section {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(1208px, calc(100% - 48px));
  margin: 0;
  padding: 100px 0 40px;
  transform: translateX(-50%);
}
.pricing-figma-page .pricing-section-head {
  margin-bottom: 68px;
}
.pricing-figma-page .pricing-section-head span {
  margin-bottom: 20px;
}
.pricing-figma-page .pricing-section-head h2 {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -2px;
}
.pricing-figma-page .pricing-section-head > p {
  width: 380px;
  font-size: 13px;
  line-height: 23.4px;
}
.pricing-figma-page .plan-card {
  min-height: 720px;
  height: 720px;
  padding: 31px;
}
.pricing-figma-page .plan-featured {
  box-shadow: 0 30px 40px rgba(45,55,40,.18);
}
.pricing-figma-page .plan-title {
  margin-top: 62px;
  padding-bottom: 29px;
}
.pricing-figma-page .plan-card > .price {
  margin: 30px 0 34px;
}
.pricing-figma-page .plan-card dl {
  margin-bottom: 30px;
}
.pricing-figma-page .annual-section {
  position: absolute;
  z-index: 1;
  top: 1023px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 150px 0;
  background: #fffaf1;
  color: #10100f;
}
.pricing-figma-page .annual-head {
  margin-bottom: 56px;
}
.pricing-figma-page .annual-head span {
  color: #a9a69c;
}
.pricing-figma-page .annual-head > p {
  color: #898b84;
}
.pricing-figma-page .annual-grid {
  gap: 14px;
}
.pricing-figma-page .annual-card {
  min-height: 280px;
  height: 280px;
  padding: 34px;
  grid-template-columns: 80px 1fr 260px;
  gap: 36px;
  border-color: #33352f;
  background: #171814;
  color: #fff;
}
.pricing-figma-page .annual-card.annual-full {
  border-color: #6c7b62;
  background: #526348;
}
.pricing-figma-page .annual-content h3 {
  font-size: 30px;
}
.pricing-figma-page .annual-buy {
  justify-self: end;
  text-align: right;
}
.pricing-figma-page .pricing-footer {
  height: 374px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .pricing-figma-page .pricing-main { height: auto; }
  .pricing-figma-page .pricing-section,
  .pricing-figma-page .annual-section {
    position: relative;
    inset: auto;
    transform: none;
  }
  .pricing-figma-page .pricing-section { padding: 72px 0 32px; }
  .pricing-figma-page .annual-section { padding: 72px 0 96px; }
  .pricing-figma-page .plan-card { height: auto; min-height: 650px; }
  .pricing-figma-page .annual-card { height: auto; grid-template-columns: 50px 1fr; }
  .pricing-figma-page .annual-buy { grid-column: 2; justify-self: start; text-align: left; }
  .pricing-figma-page .pricing-footer { height: auto; }
}

@media (max-width: 560px) {
  .pricing-figma-page .pricing-section { width: calc(100% - 32px); padding: 42px 0 56px; }
  .pricing-figma-page .pricing-section-head { margin-bottom: 36px; }
  .pricing-figma-page .pricing-section-head > p { width: auto; }
  .pricing-figma-page .annual-section { padding: 40px 0 72px; }
  .pricing-figma-page .annual-card { grid-template-columns: 1fr; }
  .pricing-figma-page .annual-buy { grid-column: 1; }
  .pricing-figma-page .plan-card {
    height: auto;
    min-height: auto;
  }
  .pricing-figma-page .plan-title h3,
  .pricing-figma-page .annual-content h3 { font-size: 24px; }
  .pricing-figma-page .price strong { font-size: 48px; }
  .pricing-figma-page .plan-title { margin-top: 44px; }
  .pricing-figma-page .plan-card dl > div { grid-template-columns: 40px 1fr; gap: 8px; }
}

/* Currency controls */
.pricing-section-side {
  width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.pricing-section-side > p { width: 100%; margin: 0; color: #77736b; font: 400 13px/23.4px "Noto Serif TC", serif; }
.currency-switcher { margin-top: 13px; display: inline-flex; gap: 3px; padding: 3px; border: 1px solid rgba(16,16,15,.13); border-radius: 999px; background: rgba(255,250,241,.82); }
.currency-switcher button { min-width: 48px; padding: 6px 9px; border: 0; border-radius: 999px; background: transparent; color: #77736b; cursor: pointer; font: 700 9px Manrope, sans-serif; letter-spacing: .04em; }
.currency-switcher button.active { background: #11120f; color: #fff; }
.currency-switcher button:focus-visible { outline: 2px solid #526348; outline-offset: 2px; }

/* Payment page */
.payment-page { min-height: 100vh; }
.payment-main { min-height: calc(100vh - 120px); padding: 100px 0 120px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
.payment-summary { padding-top: 28px; }
.payment-summary > span, .checkout-head > span { color: #8f8173; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.payment-summary h1 { margin: 30px 0 58px; font: 600 54px/1.25 "Noto Serif TC", serif; letter-spacing: -.045em; }
.payment-plan-card { max-width: 440px; padding: 34px; border-radius: 26px; background: #526348; color: #fff; box-shadow: 0 30px 60px rgba(45,55,40,.15); }
.payment-plan-card > small { color: rgba(255,255,255,.62); font-size: 9px; }
.payment-plan-card h2 { margin: 45px 0 8px; font: 600 30px "Noto Serif TC", serif; }
.payment-plan-card > p { margin: 0; color: rgba(255,255,255,.66); font: 400 12px "Noto Serif TC", serif; }
.payment-total { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); display: flex; justify-content: space-between; align-items: end; }
.payment-total > span { color: rgba(255,255,255,.65); font-size: 10px; }
.payment-total strong { display: flex; gap: 8px; align-items: flex-start; }
.payment-total i { padding-top: 8px; font: 700 10px Manrope, sans-serif; font-style: normal; }
.payment-total b { font: 400 48px/1 "Instrument Serif", serif; }
.payment-rate-note { max-width: 440px; margin-top: 22px; color: #8a8379; font: 400 10px/1.7 "Noto Serif TC", serif; }
.checkout-panel { padding: 44px; border: 1px solid rgba(16,16,15,.13); border-radius: 28px; background: #f8f1e7; }
.checkout-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.checkout-head > div { padding: 8px 12px; border-radius: 999px; background: #e9dfd0; font: 700 9px Manrope, sans-serif; }
.payment-entry-head { margin-bottom: 28px; }
.payment-entry-head h2 { margin: 0 0 10px; font: 600 28px "Noto Serif TC", serif; letter-spacing: -.04em; }
.payment-entry-head p { margin: 0; color: #8a8379; font: 400 10px/1.7 "Noto Serif TC", serif; }
.payment-entry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.payment-entry { min-height: 150px; padding: 20px 12px 16px; border: 1px solid #ddd3c5; border-radius: 16px; background: #fffdf8; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.payment-entry:hover { transform: translateY(-3px); border-color: rgba(82,99,72,.55); box-shadow: 0 12px 28px rgba(45,55,40,.09); }
.payment-entry:focus-visible { outline: 2px solid #526348; outline-offset: 3px; }
.payment-entry:disabled { cursor: wait; opacity: .62; transform: none; }
.payment-entry.selected { border-color: #526348; background: rgba(82,99,72,.08); }
.payment-entry b { margin-top: 16px; color: #24251f; font: 600 12px "Noto Serif TC", serif; }
.payment-entry small { margin-top: 6px; color: #999187; font: 400 8px "Noto Serif TC", serif; }
.pay-mark { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff; font: 800 13px Manrope, sans-serif; font-style: normal; }
.mark-line { border-radius: 999px; background: #06c755; }
.mark-jko { background: #e60012; font: 700 25px "Noto Serif TC", serif; }
.mark-card { background: #6554f5; }
.mark-bank { border-radius: 50%; background: #e89a4a; font: 700 22px "Noto Serif TC", serif; }
.mark-twpay { background: linear-gradient(135deg,#f79b33,#dc2c7d,#55a847); }
.mark-allpay { border-radius: 50%; background: #ffc400; color: #111; font: 700 20px "Noto Serif TC", serif; }
.mark-mycard { background: #19a9e5; }
.mark-easy { border-radius: 50%; background: #f04a9a; font: 700 22px "Noto Serif TC", serif; }
.mark-alipay { background: #1677ff; font: 700 24px "Noto Serif TC", serif; }
.mark-apple { background: #111; font: 400 28px Arial, sans-serif; }
.mark-google { background: linear-gradient(135deg,#4285f4 0 25%,#34a853 25% 50%,#fbbc05 50% 75%,#ea4335 75%); }
.mark-ez { background: #ec7d2d; text-transform: lowercase; }
.checkout-form label { display: block; margin-bottom: 25px; color: #645e56; font: 600 10px "Noto Serif TC", serif; }
.checkout-honeypot { position: absolute!important; width: 1px!important; height: 1px!important; overflow: hidden!important; clip-path: inset(50%)!important; white-space: nowrap!important; }
.checkout-form input:not([type="radio"]):not([type="checkbox"]) { width: 100%; margin-top: 10px; padding: 13px 0; border: 0; border-bottom: 1px solid #cfc5b8; border-radius: 0; outline: 0; background: transparent; font: 400 13px "Noto Serif TC", serif; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checkout-form fieldset { margin: 10px 0 28px; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 14px; color: #645e56; font: 600 10px "Noto Serif TC", serif; }
.payment-method { margin: 0!important; padding: 16px 18px; border: 1px solid #d8cfc2; display: grid!important; grid-template-columns: 18px 1fr auto; gap: 12px; align-items: center; cursor: pointer; }
.payment-method + .payment-method { border-top: 0; }
.payment-method:first-of-type { border-radius: 14px 14px 0 0; }
.payment-method:last-of-type { border-radius: 0 0 14px 14px; }
.payment-method input { accent-color: #526348; }
.payment-method span { display: flex; flex-direction: column; gap: 5px; }
.payment-method b { color: #10100f; font-size: 12px; }
.payment-method small { color: #8a8379; font-weight: 400; }
.payment-method i { color: #8a8379; font-style: normal; font-size: 18px; }
.payment-method img { width: 70px; max-height: 28px; object-fit: contain; }
.linepay-method { border-radius: 14px!important; }
.checkout-consent { display: flex!important; align-items: flex-start; gap: 10px; font-weight: 400!important; line-height: 1.7!important; }
.checkout-consent input { margin-top: 3px; accent-color: #526348; }
.checkout-button { width: 100%; padding: 16px 18px; border: 0; border-radius: 999px; background: #11120f; color: #fff; cursor: pointer; display: flex; justify-content: space-between; font: 700 12px "Noto Serif TC", serif; }
.checkout-button i { font-style: normal; font-size: 16px; }
.checkout-button:disabled { cursor: wait; opacity: .68; }
.checkout-security { margin: 14px 20px 0; color: #8a8379; font: 400 9px/1.65 "Noto Serif TC", serif; text-align: center; }
.regional-payments { margin: -8px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.regional-payments article { padding: 14px 15px; border: 1px solid #ddd3c5; border-radius: 12px; background: rgba(255,250,241,.62); }
.regional-payments .taiwan-payments { grid-column: 1 / -1; padding: 18px; border-color: rgba(82,99,72,.42); background: rgba(82,99,72,.07); }
.regional-payments b { color: #10100f; font: 600 11px "Noto Serif TC", serif; }
.regional-payments p { margin: 6px 0 0; color: #8a8379; font: 400 9px/1.55 "Noto Serif TC", serif; }
.payment-channel-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.payment-channel-list span { padding: 7px 10px; border: 1px solid rgba(82,99,72,.25); border-radius: 999px; background: #fffaf1; color: #3f4c38; font: 600 9px "Noto Serif TC", serif; }
.taiwan-payments > p { margin-top: 12px; }
.checkout-status { margin: 18px 0 0; color: #526348; font: 600 11px/1.7 "Noto Serif TC", serif; text-align: center; }
.checkout-status:not([hidden]) { padding: 12px 14px; border-radius: 12px; background: #efe2d3; color: #7e493f; }

/* Payment result */
.payment-result-main { min-height: calc(100vh - 120px); padding: 120px 24px; display: grid; place-items: center; }
.payment-result-card { width: min(620px, 100%); padding: 64px; border: 1px solid rgba(16,16,15,.13); border-radius: 30px; background: #f8f1e7; text-align: center; }
.payment-result-mark { width: 72px; height: 72px; margin: 0 auto 30px; border-radius: 50%; background: #526348; color: #fff; display: grid; place-items: center; font: 400 34px "Instrument Serif", serif; }
.payment-result-card > span { color: #8f8173; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.payment-result-card h1 { margin: 24px 0 16px; font: 600 42px/1.3 "Noto Serif TC", serif; }
.payment-result-card p { margin: 0 auto; max-width: 440px; color: #746d64; font: 400 12px/1.9 "Noto Serif TC", serif; }
.payment-result-card a { margin-top: 34px; padding: 15px 22px; border-radius: 999px; background: #11120f; color: #fff; display: inline-flex; gap: 38px; font: 700 11px "Noto Serif TC", serif; }

/* Hosted checkout preview */
.hosted-preview-page { min-height: 100vh; background: #f4f4f2; color: #1d1e1b; font-family: Manrope, sans-serif; }
.hosted-preview-nav { height: 74px; padding: 0 max(28px, calc((100% - 1200px)/2)); border-bottom: 1px solid #deded9; background: #fff; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.hosted-preview-nav a { font: 600 18px "Noto Serif TC", serif; }
.hosted-preview-nav strong { font-size: 20px; font-weight: 800; }
.hosted-preview-nav span { color: #85867f; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.hosted-nav-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.hosted-preview-nav .language-switcher { background: #fff; }
.hosted-preview-main { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 56px 0 100px; }
.hosted-preview-alert { margin-bottom: 18px; padding: 13px 18px; border: 1px solid #e6cf8a; border-radius: 12px; background: #fff8dc; display: flex; gap: 18px; align-items: center; }
.hosted-preview-alert b { padding: 5px 8px; border-radius: 6px; background: #f3bd24; font-size: 9px; letter-spacing: .08em; }
.hosted-preview-alert span { color: #6f602f; font-size: 11px; }
.hosted-checkout-card { min-height: 600px; border: 1px solid #deded9; border-radius: 24px; overflow: hidden; background: #fff; display: grid; grid-template-columns: 1.2fr .8fr; box-shadow: 0 30px 70px rgba(25,25,20,.08); }
.hosted-checkout-copy { padding: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hosted-checkout-copy > span, .hosted-order-summary > span { color: #96978f; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.hosted-method-icon { width: 74px; height: 74px; margin-top: 50px; border-radius: 20px; background: #526348; color: #fff; display: grid; place-items: center; font-size: 20px; font-weight: 800; }
.hosted-checkout-copy h1 { margin: 24px 0 18px; font-size: 44px; line-height: 1.1; }
.hosted-checkout-copy p { max-width: 470px; margin: 0; color: #777870; font: 400 12px/1.8 "Noto Serif TC", serif; }
.hosted-order-summary { padding: 52px 46px; background: #f1eee8; display: flex; flex-direction: column; }
.hosted-order-summary h2 { margin: 70px 0 8px; font: 600 26px "Noto Serif TC", serif; }
.hosted-order-summary > p { margin: 0; color: #818278; font: 400 11px "Noto Serif TC", serif; }
.hosted-order-summary > div { margin-top: auto; padding-top: 24px; border-top: 1px solid #d6d3cc; display: flex; justify-content: space-between; align-items: end; }
.hosted-order-summary small { color: #777870; font-size: 10px; }
.hosted-order-summary strong { display: flex; gap: 7px; align-items: flex-start; }
.hosted-order-summary i { padding-top: 7px; font-size: 9px; font-style: normal; }
.hosted-order-summary b { font-size: 38px; line-height: 1; }
.hosted-order-summary button { margin-top: 26px; padding: 16px; border: 0; border-radius: 999px; background: #b7b8b2; color: #fff; font-weight: 700; }
.hosted-order-summary a { margin-top: 20px; color: #696a64; font-size: 10px; text-align: center; }

@media (max-width: 900px) {
  .pricing-section-side { width: 330px; }
  .payment-main { grid-template-columns: 1fr; gap: 60px; }
  .payment-plan-card { max-width: none; }
  .payment-rate-note { max-width: none; }
  .payment-entry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .pricing-section-side { width: auto; margin-top: 24px; align-items: stretch; text-align: left; }
  .currency-switcher { width: 100%; }
  .currency-switcher button { flex: 1; min-width: 0; }
  .payment-main { padding: 36px 0 72px; gap: 36px; }
  .payment-summary { padding-top: 0; }
  .payment-summary h1 { margin: 18px 0 28px; font-size: 36px; }
  .payment-plan-card { padding: 26px; border-radius: 22px; }
  .payment-plan-card h2 { margin-top: 30px; font-size: 26px; }
  .payment-total { margin-top: 28px; }
  .checkout-panel { padding: 24px 18px; border-radius: 22px; }
  .checkout-head { margin-bottom: 26px; }
  .payment-entry-head { margin-bottom: 20px; }
  .payment-entry-head h2 { font-size: 24px; }
  .payment-entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-entry { min-height: 132px; }
  .checkout-row { grid-template-columns: 1fr; gap: 0; }
  .regional-payments { grid-template-columns: 1fr; }
  .payment-result-card { padding: 46px 24px; }
  .hosted-preview-nav { padding: 0 20px; grid-template-columns: 1fr auto; }
  .hosted-preview-nav span { display: none; }
  .hosted-checkout-card { grid-template-columns: 1fr; }
  .hosted-checkout-copy { padding: 46px 28px; }
  .hosted-checkout-copy h1 { font-size: 34px; }
  .hosted-order-summary { min-height: 420px; padding: 40px 28px; }
}

/* H5 readability refinement — keep the approved navigation unchanged */
@media (max-width: 560px) {
  .home-page .hero-copy > p:not(.hero-kicker) {
    width: min(370px, calc(100% - 32px));
    font-size: 15px;
    line-height: 29px;
  }
  .home-page .hero-actions { padding-top: 24px; }
  .home-page .hero-actions .dark-button,
  .home-page .hero-actions .hero-contact-button { font-size: 14px; }

  .home-page .art-scene {
    width: min(400px, calc(100% - 32px));
    height: auto;
    aspect-ratio: 1.72 / 1;
    margin-top: 66px;
    border-radius: 18px;
  }
  .home-page .process-card {
    width: min(400px, calc(100% - 32px));
    border-radius: 22px;
  }
  .home-page .process-card article { padding: 28px 24px; }
  .home-page .process-card article:last-child { padding: 28px 24px; }
  .home-page .process-card h2 { margin: 18px 0 10px; font-size: 16px; line-height: 1.75; }
  .home-page .process-card p { font-size: 12px; line-height: 1.7; }

  .home-page .metrics,
  .home-page .stories {
    width: min(400px, calc(100% - 32px));
    margin-top: 112px;
  }
  .home-page .center-heading { margin-bottom: 34px; }
  .home-page .center-heading h2 { font-size: 36px; line-height: 1.2; }
  .home-page .center-heading p {
    max-width: 360px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.75;
    white-space: normal;
  }
  .home-page .metric-card {
    width: 100%;
    height: 360px;
    padding: 28px;
    border-radius: 26px;
  }
  .home-page .metric-card strong { font-size: 58px; line-height: 1.15; }
  .home-page .metric-card strong .metric-unit { font-size: 26px; }
  .home-page .metric-card strong .metric-symbol { font-size: 34px; }
  .home-page .metric-card > span { font-size: 13px; white-space: normal; }

  .home-page .story-row {
    margin-left: calc((min(400px, calc(100vw - 32px)) - 100vw) / 2);
    padding-left: 16px;
    gap: 18px;
  }
  .home-page .story-card { width: 230px; min-width: 230px; height: 394px; border-radius: 24px; }

  .home-page .faq,
  .home-page .contact { width: calc(100% - 32px); margin-top: 112px; }
  .home-page .faq-title h2,
  .home-page .contact h2 { font-size: 36px; }
  .home-page .faq-title p,
  .home-page .contact-copy > p { font-size: 12px; line-height: 1.65; }
  .home-page .faq-list summary { font-size: 15px; line-height: 1.5; }
  .home-page .faq-list details { padding: 23px 0; }
  .home-page .faq-list details p { font-size: 12px; line-height: 1.85; }
  .home-page .contact-grid { margin-top: 48px; }
  .home-page .contact-grid b { font-size: 15px; }
  .home-page .contact-grid small { font-size: 10px; }
}

@media (max-width: 560px) {
  .home-page .process-card { margin-top: -14px; }
  .home-page .process-card article:first-child { padding-top: 18px; }
  .home-page .process-card article:first-child h2 { margin-top: 14px; }
}

/* Stable mobile hamburger / close icon */
@media (max-width: 900px) {
  .menu-toggle {
    padding: 0;
    border-radius: 8px;
    overflow: visible;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    margin: 0;
    position: absolute;
    left: 7px;
    background: #10100f;
    transform-origin: center;
    transition: top .24s ease, transform .24s ease, opacity .2s ease;
  }
  .menu-toggle span:first-child { top: 10px; }
  .menu-toggle span:last-child { top: 21px; }
  .nav.open .menu-toggle span:first-child {
    top: 15.5px;
    transform: rotate(45deg);
  }
  .nav.open .menu-toggle span:last-child {
    top: 15.5px;
    transform: rotate(-45deg);
  }
}
