:root {
  --ink: #1d2526;
  --ink-soft: #4f5b5c;
  --paper: #fffaf2;
  --paper-strong: #fff7eb;
  --surface: #ffffff;
  --line: #dedbd3;
  --coral: #ff7657;
  --coral-dark: #d84f34;
  --sun: #f9c74f;
  --mint: #8bd3c7;
  --mint-dark: #347c72;
  --blue: #84b6f4;
  --lavender: #c8b6ff;
  --shadow-sm: 0 8px 24px rgba(29, 37, 38, 0.08);
  --shadow-md: 0 18px 55px rgba(29, 37, 38, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(249, 199, 79, 0.20), transparent 30%),
    radial-gradient(circle at 96% 12%, rgba(139, 211, 199, 0.20), transparent 26%),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(255, 118, 87, 0.25); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tight { padding: 52px 0; }
.section-title { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.12; letter-spacing: -0.04em; }
.section-lead { margin: 0; color: var(--ink-soft); font-size: 1.08rem; max-width: 720px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--coral-dark);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: currentColor; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }
.micro { font-size: .78rem; }
.center { text-align: center; }
.stack { display: grid; gap: 18px; }
.stack-lg { display: grid; gap: 30px; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(255, 250, 242, .86);
  border-bottom: 1px solid rgba(29, 37, 38, .08);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 700;
  border-radius: 999px;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--ink); background: white; box-shadow: 0 4px 16px rgba(29, 37, 38, .07); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { width: 20px; height: 2px; background: var(--ink); border-radius: 99px; content: ""; display: block; }
.menu-toggle span { margin: 4px 0; }
.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  padding: 18px 20px 24px;
  background: rgba(255, 250, 242, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-panel.is-open { display: grid; gap: 8px; }
.mobile-panel a { padding: 13px 14px; border-radius: 12px; font-weight: 750; }
.mobile-panel a:hover { background: white; }

.btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(29, 37, 38, .15);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(29, 37, 38, .18); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, .icon-btn:focus-visible, .choice:focus-visible, .menu-card:focus-visible { outline: 3px solid rgba(255, 118, 87, .35); outline-offset: 3px; }
.btn-primary { background: var(--coral); color: var(--ink); box-shadow: 0 10px 24px rgba(255, 118, 87, .24); }
.btn-primary:hover { background: #ff896e; }
.btn-secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(29, 37, 38, .16); box-shadow: none; }
.btn-small { min-height: 40px; padding: 9px 14px; border-radius: 12px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.icon-btn { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 13px; background: white; display: grid; place-items: center; cursor: pointer; }

.hero { padding: 66px 0 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px, 8vw, 92px); }
.hero h1 { margin: 0 0 22px; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .98; letter-spacing: -.065em; max-width: 780px; }
.hero h1 em { font-style: normal; color: var(--coral-dark); }
.hero-copy { color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 650px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 20px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .9rem; }
.hero-note::before { content: "✓"; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: rgba(139, 211, 199, .35); color: var(--mint-dark); font-weight: 900; }

.hero-art { position: relative; min-height: 550px; display: grid; place-items: center; }
.hero-blob { position: absolute; inset: 6% 2% 3% 7%; border-radius: 48% 52% 45% 55% / 45% 42% 58% 55%; background: linear-gradient(145deg, #ffd6ca, #ffedd3 54%, #cdeee8); transform: rotate(-4deg); }
.phone-card {
  position: relative;
  z-index: 2;
  width: min(380px, 86vw);
  background: #fff;
  border: 1px solid rgba(29, 37, 38, .1);
  border-radius: 38px;
  padding: 18px;
  box-shadow: 0 32px 80px rgba(44, 55, 56, .22);
  transform: rotate(2deg);
}
.phone-top { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; font-size: .8rem; font-weight: 800; }
.phone-notch { width: 90px; height: 22px; border-radius: 99px; background: var(--ink); }
.receipt { background: var(--paper-strong); border: 1px dashed rgba(29, 37, 38, .24); border-radius: 24px; padding: 22px; }
.receipt-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px dashed rgba(29, 37, 38, .2); }
.receipt-cat { width: 52px; height: 52px; border-radius: 17px; background: var(--coral); display: grid; place-items: center; font-size: 1.6rem; }
.receipt-lines { display: grid; gap: 12px; padding: 18px 0; border-bottom: 1px dashed rgba(29, 37, 38, .2); }
.receipt-row { display: flex; justify-content: space-between; gap: 18px; color: var(--ink-soft); }
.receipt-total { display: flex; justify-content: space-between; gap: 18px; padding-top: 17px; font-size: 1.15rem; font-weight: 900; }
.zero-pay { margin-top: 14px; padding: 13px 14px; border-radius: 15px; background: var(--mint); font-weight: 900; text-align: center; }
.floating-card { position: absolute; z-index: 3; background: white; border: 1px solid rgba(29,37,38,.08); border-radius: 18px; padding: 13px 16px; box-shadow: var(--shadow-sm); font-weight: 800; }
.floating-card.one { right: -2%; top: 11%; transform: rotate(7deg); }
.floating-card.two { left: 0; bottom: 12%; transform: rotate(-7deg); }
.floating-card.three { right: 2%; bottom: 3%; transform: rotate(3deg); }

.trust-strip { border-block: 1px solid rgba(29, 37, 38, .09); background: rgba(255,255,255,.5); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.trust-item { padding: 22px 18px; display: flex; align-items: center; gap: 12px; font-weight: 750; color: var(--ink-soft); }
.trust-icon { width: 38px; height: 38px; border-radius: 12px; background: white; display: grid; place-items: center; box-shadow: 0 4px 15px rgba(29,37,38,.06); }

.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin-top: 38px; }
.experience-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid rgba(29,37,38,.08);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.experience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.experience-card h3 { margin: 0 0 12px; font-size: 2rem; letter-spacing: -.035em; }
.experience-card p { margin: 0 0 26px; color: var(--ink-soft); max-width: 430px; }
.experience-card .emoji { position: absolute; right: 26px; bottom: 16px; font-size: clamp(5rem, 11vw, 8rem); transform: rotate(-7deg); filter: drop-shadow(0 14px 15px rgba(29,37,38,.12)); }
.experience-card.coral { background: linear-gradient(145deg, #fff, #ffe1d8); }
.experience-card.mint { background: linear-gradient(145deg, #fff, #dff7f1); }
.experience-card.sun { background: linear-gradient(145deg, #fff, #fff0bd); }
.experience-card.lavender { background: linear-gradient(145deg, #fff, #ebe4ff); }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 900; }
.card-link::after { content: "→"; transition: transform .18s ease; }
.experience-card:hover .card-link::after { transform: translateX(4px); }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 42px; }
.step-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 10px 26px rgba(29,37,38,.05); }
.step-no { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 900; margin-bottom: 20px; }
.step-card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.step-card p { margin: 0; color: var(--ink-soft); }

.quote-section { padding: 78px 0; }
.quote-card { position: relative; overflow: hidden; background: var(--ink); color: white; border-radius: 40px; padding: clamp(36px, 7vw, 78px); }
.quote-card blockquote { margin: 0; max-width: 920px; font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.12; letter-spacing: -.045em; font-weight: 850; }
.quote-card p { color: rgba(255,255,255,.72); max-width: 700px; font-size: 1.05rem; }
.quote-paw { position: absolute; right: -24px; bottom: -70px; font-size: 16rem; opacity: .08; transform: rotate(-15deg); }

.local-summary { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.summary-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 24px; }
.metric { padding: 20px; border-radius: 18px; background: var(--paper-strong); }
.metric strong { display: block; font-size: 1.8rem; line-height: 1.2; }
.metric span { color: var(--ink-soft); font-size: .86rem; }

.faq { display: grid; gap: 12px; margin-top: 34px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 0 22px; }
.faq summary { cursor: pointer; list-style: none; font-weight: 850; padding: 20px 36px 20px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 20px; color: var(--ink-soft); }

.page-hero { padding: 58px 0 44px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: end; }
.page-hero h1 { margin: 0 0 14px; font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1; letter-spacing: -.055em; }
.page-hero p { margin: 0; color: var(--ink-soft); max-width: 760px; font-size: 1.12rem; }
.safety-pill { display: inline-flex; align-items: center; gap: 9px; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 800; font-size: .86rem; white-space: nowrap; }

.tool-shell { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 26px; align-items: start; padding-bottom: 90px; }
.tool-main, .tool-sidebar { min-width: 0; }
.tool-sidebar { position: sticky; top: calc(var(--header-h) + 18px); }
.panel { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.panel-head { padding: 24px 26px; border-bottom: 1px solid var(--line); }
.panel-head h2, .panel-head h3 { margin: 0 0 6px; }
.panel-body { padding: 26px; }

.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-chip { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 9px 14px; font-weight: 750; cursor: pointer; }
.filter-chip.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.menu-card { text-align: left; border: 1px solid var(--line); background: white; border-radius: 20px; padding: 18px; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.menu-card:hover { transform: translateY(-3px); border-color: rgba(255,118,87,.55); box-shadow: var(--shadow-sm); }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.menu-emoji { width: 56px; height: 56px; border-radius: 18px; background: var(--paper-strong); display: grid; place-items: center; font-size: 2rem; }
.menu-add { width: 32px; height: 32px; border-radius: 10px; background: var(--ink); color: white; display: grid; place-items: center; font-weight: 900; }
.menu-card h3 { margin: 14px 0 5px; font-size: 1.08rem; }
.menu-card p { margin: 0 0 10px; color: var(--ink-soft); font-size: .87rem; min-height: 2.8em; }
.price { font-weight: 900; }

.cart-empty { padding: 30px 16px; text-align: center; color: var(--ink-soft); }
.cart-empty .emoji { font-size: 2.7rem; margin-bottom: 10px; }
.cart-list { display: grid; gap: 12px; max-height: 330px; overflow: auto; padding-right: 4px; }
.cart-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.cart-row h4 { margin: 0 0 4px; font-size: .95rem; }
.cart-row p { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.qty { display: flex; align-items: center; gap: 6px; }
.qty button { width: 28px; height: 28px; border: 1px solid var(--line); background: white; border-radius: 9px; cursor: pointer; }
.cart-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-weight: 900; font-size: 1.08rem; }
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 15px 16px; border-radius: 16px; background: #fff5cd; border: 1px solid #f0d26b; color: #665217; }
.notice strong { display: block; }
.notice p { margin: 2px 0 0; font-size: .87rem; }
.notice.mint { background: #e8f8f4; border-color: #a8ddd4; color: #255c54; }
.notice.coral { background: #fff0ec; border-color: #ffc0b1; color: #7a3827; }

.form-grid { display: grid; gap: 17px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { font-weight: 800; font-size: .92rem; }
.input, .select, .textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,118,87,.12); }
.input-prefix { position: relative; }
.input-prefix span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); font-weight: 800; }
.input-prefix .input { padding-left: 45px; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.choice { border: 1px solid var(--line); background: white; border-radius: 14px; padding: 13px; text-align: left; cursor: pointer; font-weight: 750; }
.choice.is-selected { border-color: var(--ink); background: var(--ink); color: white; }
.choice small { display: block; font-weight: 500; opacity: .75; margin-top: 3px; }
.range-wrap { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.range-wrap output { min-width: 42px; height: 42px; border-radius: 13px; background: var(--ink); color: white; display: grid; place-items: center; font-weight: 900; }
input[type="range"] { width: 100%; accent-color: var(--coral); }

.modal-backdrop { position: fixed; inset: 0; z-index: 3000; background: rgba(29,37,38,.56); backdrop-filter: blur(8px); display: none; place-items: center; padding: 20px; }
.modal-backdrop.is-open { display: grid; }
.modal { width: min(650px, 100%); max-height: min(780px, 92vh); overflow: auto; background: var(--paper); border-radius: 28px; box-shadow: 0 40px 100px rgba(0,0,0,.30); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0 0 5px; }
.modal-body { padding: 26px; }
.progress { height: 8px; background: rgba(29,37,38,.1); border-radius: 99px; overflow: hidden; margin-bottom: 22px; }
.progress span { display: block; height: 100%; background: var(--coral); border-radius: inherit; transition: width .3s ease; }
.modal-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }

.result-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 5vw, 48px); box-shadow: var(--shadow-md); }
.result-icon { width: 76px; height: 76px; border-radius: 24px; background: var(--mint); display: grid; place-items: center; font-size: 2.4rem; margin-bottom: 20px; }
.result-card h2 { margin: 0 0 10px; font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.08; letter-spacing: -.045em; }
.result-amount { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1; font-weight: 950; letter-spacing: -.05em; margin: 24px 0; }
.countdown { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 18px; background: var(--paper-strong); }
.countdown-time { font-variant-numeric: tabular-nums; font-size: 2rem; font-weight: 950; }
.result-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.delivery-track { position: relative; height: 90px; margin: 28px 0 8px; }
.delivery-line { position: absolute; left: 8%; right: 8%; top: 50%; height: 5px; border-radius: 99px; background: repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 24px); }
.delivery-cat { position: absolute; left: 4%; top: 21px; font-size: 2.6rem; animation: deliver 6s ease-in-out infinite alternate; }
@keyframes deliver { to { left: 82%; } }

.shop-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.product-suggestions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.product-card { border: 1px solid var(--line); border-radius: 18px; padding: 17px; background: white; }
.product-card .emoji { font-size: 2rem; }
.product-card h3 { margin: 10px 0 5px; font-size: 1rem; }
.product-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: .84rem; }

.wish-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.wish-card { position: relative; overflow: hidden; min-height: 310px; padding: 24px; border-radius: 26px; border: 1px solid rgba(29,37,38,.09); background: white; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.wish-card:nth-child(4n+1) { background: linear-gradient(145deg,#fff,#ffe1d8); }
.wish-card:nth-child(4n+2) { background: linear-gradient(145deg,#fff,#e2f6f2); }
.wish-card:nth-child(4n+3) { background: linear-gradient(145deg,#fff,#fff0bd); }
.wish-card:nth-child(4n+4) { background: linear-gradient(145deg,#fff,#eee8ff); }
.wish-emoji { font-size: 3.6rem; margin-bottom: auto; }
.wish-card h3 { margin: 18px 0 8px; font-size: 1.25rem; line-height: 1.25; }
.wish-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: .9rem; }
.wish-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wish-price { font-weight: 950; }

.share-receipt { background: var(--ink); color: white; border-radius: 28px; padding: 28px; max-width: 470px; margin-inline: auto; }
.share-receipt .share-brand { color: var(--sun); font-weight: 900; letter-spacing: .04em; }
.share-receipt h3 { font-size: 2rem; line-height: 1.15; margin: 26px 0 18px; }
.share-receipt .share-price { font-size: 2.4rem; font-weight: 950; }
.share-receipt .share-zero { margin-top: 22px; background: var(--coral); color: var(--ink); padding: 13px; border-radius: 14px; text-align: center; font-weight: 950; }

.room-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.room-card { min-height: 170px; border: 2px solid transparent; border-radius: 22px; padding: 20px; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; text-align: left; color: white; overflow: hidden; position: relative; }
.room-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent,rgba(15,22,24,.6)); }
.room-card > * { position: relative; z-index: 1; }
.room-card.is-selected { border-color: white; box-shadow: 0 0 0 4px var(--coral); }
.room-card .emoji { font-size: 2.6rem; }
.room-card h3 { margin: 0; }
.room-rooftop { background: linear-gradient(160deg,#f5a86a,#6b79b4 58%,#263650); }
.room-rain { background: linear-gradient(160deg,#4b6d8a,#223b54); }
.room-store { background: linear-gradient(160deg,#f1cb70,#cf6577 60%,#47345f); }
.room-sea { background: linear-gradient(160deg,#8ad5d0,#297c8b 58%,#234755); }
.room-hotel { background: linear-gradient(160deg,#c9b6ad,#745d64); }
.room-space { background: linear-gradient(160deg,#36305f,#12162d); }
.break-stage { position: relative; min-height: 540px; overflow: hidden; border-radius: 34px; padding: 36px; color: white; display: none; place-items: center; text-align: center; isolation: isolate; }
.break-stage.is-active { display: grid; }
.break-stage::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg,#263650,#6b79b4 60%,#f5a86a); }
.break-stage[data-room="rain"]::before { background: linear-gradient(160deg,#4b6d8a,#172b3b); }
.break-stage[data-room="store"]::before { background: linear-gradient(160deg,#f1cb70,#cf6577 55%,#47345f); }
.break-stage[data-room="sea"]::before { background: linear-gradient(160deg,#8ad5d0,#297c8b 55%,#234755); }
.break-stage[data-room="hotel"]::before { background: linear-gradient(160deg,#c9b6ad,#745d64); }
.break-stage[data-room="space"]::before { background: radial-gradient(circle at 30% 20%,#7663ba,#181a39 55%,#070a16); }
.break-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .25; background-image: radial-gradient(circle at 20% 10%,white 0 1px,transparent 1.5px),radial-gradient(circle at 80% 30%,white 0 1px,transparent 1.5px),radial-gradient(circle at 50% 70%,white 0 1px,transparent 1.5px); background-size: 130px 130px,170px 170px,210px 210px; animation: drift 18s linear infinite; }
@keyframes drift { to { background-position: 130px 130px,-170px 170px,210px -210px; } }
.breath-orb { width: 170px; height: 170px; border-radius: 50%; display: grid; place-items: center; margin: 20px auto; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45); box-shadow: 0 0 70px rgba(255,255,255,.18); animation: breathe 8s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(.82); } 50% { transform: scale(1.08); } }
.break-time { font-size: clamp(3.6rem,10vw,7rem); line-height: 1; font-weight: 950; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.break-copy { max-width: 520px; margin: 0 auto 20px; color: rgba(255,255,255,.82); }
.break-controls { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.break-controls .btn-secondary { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); color: white; backdrop-filter: blur(10px); }

.cooldown-list { display: grid; gap: 14px; }
.cooldown-item { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.cooldown-icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; background: var(--paper-strong); font-size: 1.55rem; }
.cooldown-item h3 { margin: 0 0 4px; font-size: 1.03rem; }
.cooldown-item p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
.cooldown-status { text-align: right; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: var(--paper-strong); font-size: .78rem; font-weight: 850; }
.status-pill.ready { background: #e3f7f1; color: #28685e; }
.outcome-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; grid-column: 2 / -1; }
.empty-state { text-align: center; padding: 60px 26px; background: white; border: 1px dashed var(--line); border-radius: 26px; }
.empty-state .emoji { font-size: 3.2rem; }
.empty-state h2 { margin: 12px 0 6px; }
.empty-state p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 22px; }

.pulse-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pulse-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.pulse-card strong { display: block; font-size: 2.2rem; line-height: 1.1; margin-bottom: 8px; }
.bar-list { display: grid; gap: 15px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 42px; gap: 12px; align-items: center; }
.bar-track { height: 12px; border-radius: 99px; background: rgba(29,37,38,.08); overflow: hidden; }
.bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--coral),var(--sun)); }

.article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.article-card { background: white; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); }
.article-cover { min-height: 160px; display: grid; place-items: center; font-size: 4rem; background: linear-gradient(145deg,#ffe1d8,#fff0bd); }
.article-card:nth-child(3n+2) .article-cover { background: linear-gradient(145deg,#dff7f1,#dfeeff); }
.article-card:nth-child(3n+3) .article-cover { background: linear-gradient(145deg,#eee8ff,#ffe1d8); }
.article-body { padding: 22px; }
.article-body h2, .article-body h3 { margin: 0 0 10px; line-height: 1.3; }
.article-body p { margin: 0 0 16px; color: var(--ink-soft); }
.article-meta { font-size: .8rem; color: var(--ink-soft); font-weight: 750; margin-bottom: 10px; }
.article-page { padding: 46px 0 90px; }
.article-header { max-width: 880px; margin: 0 auto 42px; }
.article-header h1 { margin: 10px 0 18px; font-size: clamp(2.6rem,7vw,5rem); line-height: 1.04; letter-spacing: -.055em; }
.article-header .lead { color: var(--ink-soft); font-size: 1.16rem; }
.prose { max-width: 760px; margin: 0 auto; font-size: 1.06rem; }
.prose h2 { margin: 44px 0 16px; font-size: 1.8rem; letter-spacing: -.025em; }
.prose h3 { margin: 30px 0 10px; }
.prose p { margin: 0 0 22px; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: 9px; }
.prose blockquote { margin: 30px 0; padding: 24px 28px; background: white; border-left: 5px solid var(--coral); border-radius: 0 18px 18px 0; font-size: 1.2rem; font-weight: 800; }
.prose .callout { margin: 30px 0; padding: 24px; background: #e9f7f4; border: 1px solid #b8e1da; border-radius: 20px; }

.content-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,5vw,52px); box-shadow: var(--shadow-sm); }
.content-card h2:first-child { margin-top: 0; }
.policy-list { display: grid; gap: 14px; margin-top: 24px; }
.policy-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding: 18px; border-radius: 18px; background: var(--paper-strong); }
.policy-icon { width: 46px; height: 46px; border-radius: 14px; background: white; display: grid; place-items: center; font-size: 1.4rem; }
.policy-item h3 { margin: 0 0 5px; }
.policy-item p { margin: 0; color: var(--ink-soft); }

.cta-section { padding: 74px 0; }
.cta-card { border-radius: 38px; padding: clamp(34px,6vw,70px); background: linear-gradient(135deg,var(--coral),#ffb873 50%,var(--sun)); color: var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-card h2 { margin: 0 0 10px; font-size: clamp(2rem,5vw,3.8rem); line-height: 1.05; letter-spacing: -.04em; }
.cta-card p { margin: 0; max-width: 680px; }

.site-footer { border-top: 1px solid rgba(29,37,38,.1); padding: 52px 0 28px; background: rgba(255,255,255,.42); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,.7fr); gap: 36px; }
.footer-brand img { width: 150px; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); max-width: 360px; }
.footer-col h3 { margin: 0 0 12px; font-size: .95rem; }
.footer-col a { display: block; padding: 5px 0; color: var(--ink-soft); font-size: .92rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(29,37,38,.1); display: flex; justify-content: space-between; gap: 18px; color: var(--ink-soft); font-size: .83rem; }

.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 5000; display: grid; gap: 10px; width: min(360px, calc(100vw - 36px)); }
.toast { background: var(--ink); color: white; border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-md); animation: toast-in .25s ease both; }
.toast strong { display: block; }
.toast p { margin: 2px 0 0; color: rgba(255,255,255,.74); font-size: .84rem; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1000px) {
  .desktop-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .local-summary, .page-hero-grid, .shop-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 510px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .tool-shell { grid-template-columns: 1fr; }
  .tool-sidebar { position: static; }
  .wish-grid, .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .section { padding: 62px 0; }
  .hero { padding: 42px 0 56px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(3rem,15vw,4.5rem); }
  .hero-art { min-height: 430px; }
  .phone-card { width: min(340px,88vw); border-radius: 30px; }
  .floating-card { font-size: .77rem; padding: 10px 12px; }
  .experience-grid, .steps, .metric-grid, .pulse-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 285px; padding: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid rgba(29,37,38,.07); }
  .menu-grid, .product-suggestions, .choice-grid, .room-grid { grid-template-columns: 1fr; }
  .wish-grid, .article-grid { grid-template-columns: 1fr; }
  .tool-shell { padding-bottom: 62px; }
  .result-actions { grid-template-columns: 1fr; }
  .cooldown-item { grid-template-columns: auto 1fr; }
  .cooldown-status { grid-column: 2; text-align: left; }
  .outcome-row { grid-column: 1 / -1; }
  .bar-row { grid-template-columns: 96px 1fr 34px; font-size: .83rem; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .break-stage { min-height: 500px; padding: 24px 18px; }
  .modal-backdrop { padding: 10px; align-items: end; }
  .modal { max-height: 94vh; border-radius: 26px 26px 12px 12px; }
}

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