/* Bryan Au seller funnel. Palette: warm paper, deep cypress ink, brass. */

:root {
  --paper: #F7F2E9;
  --paper-2: #EFE7DA;
  --paper-3: #E7DCC8;
  --ink: #1E2B26;
  --ink-2: #15201C;
  --ink-soft: #4A5A52;
  --brass: #8F621C;
  --brass-bright: #B98A2F;
  --terra: #B24A2C;
  --line: rgba(30, 43, 38, 0.16);
  --line-soft: rgba(30, 43, 38, 0.09);
  --paper-ink: #F7F2E9;
  --shadow: 0 1px 2px rgba(21, 32, 28, 0.06), 0 12px 32px -12px rgba(21, 32, 28, 0.22);
  --radius: 14px;
  --font-display: "Fraunces", "Songti TC", Georgia, serif;
  --font-body: "Public Sans", "PingFang TC", "Microsoft JhengHei", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Display rules on classes must never override the hidden attribute. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* faint grain so flat panels feel like paper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.17 0 0 0 0 0.15 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header.site, footer.site { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: var(--brass); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terra); }

::selection { background: var(--brass-bright); color: var(--ink-2); }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.18rem; line-height: 1.3; }

:lang(zh-Hant) h1, :lang(zh-Hant) h2 { letter-spacing: 0.01em; line-height: 1.22; }
:lang(zh-Hant) body, body:lang(zh-Hant) { line-height: 1.75; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--brass-bright); flex: none; }

.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { display: grid; gap: 14px; max-width: 760px; margin-bottom: clamp(30px, 5vw, 54px); }

.num-marker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brass);
}

/* ---------- header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; }
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1.1; }
.brand b { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: 0.01em; }
.brand span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.site-actions { display: flex; align-items: center; gap: 10px; }
.lang-link { font-size: 0.86rem; font-weight: 600; color: var(--ink); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.lang-link:hover { background: var(--paper-2); color: var(--ink); }
.phone-link { display: none; font-weight: 700; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.phone-link:hover { color: var(--brass); }
@media (min-width: 640px) { .phone-link { display: inline-block; } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 26px;
  border-radius: 11px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper-ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  box-shadow: 0 2px 0 rgba(21, 32, 28, 0.25);
}
.btn:hover { background: var(--ink-2); color: var(--paper-ink); transform: translateY(-1px); box-shadow: 0 5px 16px -4px rgba(21, 32, 28, 0.45); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, .opt:focus-visible, input:focus-visible, select:focus-visible, .lang-link:focus-visible {
  outline: 2.5px solid var(--brass-bright);
  outline-offset: 2px;
}
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--paper-2); }
.btn.brass { background: var(--brass); border-color: var(--brass); }
.btn.brass:hover { background: #7a5316; }
.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- hero ---------- */

.hero { padding: clamp(40px, 6vw, 84px) 0 clamp(56px, 7vw, 96px); overflow: clip; }
.hero-grid { display: grid; gap: 34px; align-items: start; }
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px 48px;
    grid-template-areas: "copy quiz" "photo quiz";
  }
  .hero-copy { grid-area: copy; }
  .quiz-holder { grid-area: quiz; }
  .hero-visual { grid-area: photo; }
}

.hero-copy { display: grid; gap: 20px; }
.hero-copy h1 em { font-style: italic; color: var(--brass); }

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 60%, #fff 40%);
}

.hero-visual { position: relative; margin-top: 8px; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  aspect-ratio: 3 / 2.1;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  color: var(--paper-ink);
  font-size: 0.78rem;
  padding: 7px 12px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* the two ticket cards */
.tickets { display: grid; gap: 16px; }
@media (min-width: 700px) { .tickets { grid-template-columns: 1fr 1fr; gap: 20px; } }
.ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  position: relative;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: start;
}
.ticket::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line);
  border-radius: 9px;
  pointer-events: none;
}
.ticket .no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--brass-bright);
  line-height: 1;
}
.ticket h3 { font-size: 1.3rem; }
.ticket p { color: var(--ink-soft); font-size: 0.98rem; }
.ticket.reno { background: var(--ink); color: var(--paper-ink); border-color: var(--ink); }
.ticket.reno::before { border-color: rgba(247, 242, 233, 0.25); }
.ticket.reno p { color: rgba(247, 242, 233, 0.78); }
.ticket.reno .no { color: var(--brass-bright); }

/* ---------- quiz ---------- */

.quiz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3.4vw, 32px);
  position: relative;
}
.quiz-card > .quiz-title { font-family: var(--font-display); font-weight: 640; font-size: 1.45rem; margin-bottom: 4px; }
.quiz-sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 18px; }

.quiz-progress { height: 3px; background: var(--paper-3); border-radius: 99px; overflow: hidden; margin-bottom: 20px; }
.quiz-progress i { display: block; height: 100%; width: 0%; background: var(--brass-bright); transition: width 0.3s ease; }

.quiz-step-label { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.quiz-step-label .q { font-weight: 700; font-size: 1.06rem; }
.quiz-step-label .n { font-family: var(--font-display); font-style: italic; color: var(--brass); font-size: 0.9rem; white-space: nowrap; }

.quiz-body { display: grid; gap: 10px; }
.quiz-body.fade { animation: stepIn 0.28s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 15px 16px;
  cursor: pointer;
  transition: border-color 0.14s ease, background 0.14s ease, transform 0.14s ease;
}
.opt::after { content: "→"; color: var(--brass); opacity: 0; transition: opacity 0.14s ease; }
.opt:hover { border-color: var(--brass-bright); background: #fff; transform: translateX(2px); }
.opt:hover::after { opacity: 1; }
.opt[aria-pressed="true"] { border-color: var(--brass); background: #fff; }

.field { display: grid; gap: 6px; }
.field label { font-size: 0.86rem; font-weight: 700; }
.field input, .field select {
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--brass-bright); background: #fff; }
.field .err { color: var(--terra); font-size: 0.82rem; font-weight: 600; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--terra); }
.field.invalid .err { display: block; }

.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.quiz-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
  padding: 8px 10px; border-radius: 8px; visibility: hidden;
}
.quiz-back:hover { background: var(--paper-2); color: var(--ink); }
.quiz-fine { font-size: 0.76rem; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
.hp-row { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

/* ---------- before / after slider ---------- */

.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  --pos: 50%;
  touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .ba-before-wrap { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba .ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2.5px; background: var(--paper); transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(21, 32, 28, 0.25);
  pointer-events: none;
}
.ba .ba-handle {
  position: absolute; top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; letter-spacing: -0.05em;
  box-shadow: 0 2px 10px rgba(21, 32, 28, 0.35);
  pointer-events: none;
}
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba .tag {
  position: absolute; top: 12px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; pointer-events: none;
}
.ba .tag.before { left: 12px; background: rgba(21, 32, 28, 0.82); color: var(--paper-ink); }
.ba .tag.after { right: 12px; background: rgba(247, 242, 233, 0.92); color: var(--ink); }

.ba-caption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- proof / gallery ---------- */

.proof-grid { display: grid; gap: 26px; }
@media (min-width: 960px) { .proof-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; } }
.proof-side { display: grid; gap: 16px; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow); background: #fff; }
.mini-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.mini-card figcaption { font-size: 0.78rem; color: var(--ink-soft); padding: 9px 12px; }

/* ---------- sold strip ---------- */

.sold-section { background: var(--ink); color: var(--paper-ink); }
.sold-section .eyebrow { color: var(--brass-bright); }
.sold-section .lead { color: rgba(247, 242, 233, 0.72); }
.sold-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) { .sold-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.sold-card {
  border: 1px solid rgba(247, 242, 233, 0.16);
  border-radius: 12px;
  padding: 20px 18px 17px;
  display: grid;
  gap: 4px;
  background: linear-gradient(160deg, rgba(247, 242, 233, 0.055), rgba(247, 242, 233, 0.015));
}
.sold-card .price { font-family: var(--font-display); font-weight: 640; font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--brass-bright); }
.sold-card .city { font-weight: 700; font-size: 0.95rem; }
.sold-card .kind { font-size: 0.78rem; color: rgba(247, 242, 233, 0.62); }
.sold-note { font-size: 0.78rem; color: rgba(247, 242, 233, 0.55); margin-top: 18px; max-width: 70ch; }

/* ---------- steps ---------- */

.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: grid;
  gap: 8px;
  align-content: start;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--paper-3);
  line-height: 1;
}
.step h3 { font-size: 1.16rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- about ---------- */

.about-grid { display: grid; gap: 30px; align-items: center; }
@media (min-width: 880px) { .about-grid { grid-template-columns: 320px 1fr; gap: 56px; } }
.portrait {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .monogram { font-family: var(--font-display); font-weight: 700; font-size: 4.6rem; color: var(--brass-bright); letter-spacing: -0.02em; }
.portrait .monogram small { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247, 242, 233, 0.6); text-align: center; margin-top: 10px; }
.about-copy { display: grid; gap: 16px; }
.about-copy .facts { display: grid; gap: 9px; padding: 0; margin: 6px 0 0; list-style: none; }
.about-copy .facts li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-soft); font-size: 0.97rem; }
.about-copy .facts li::before { content: "•"; color: var(--brass-bright); font-weight: 800; }

/* ---------- areas ---------- */

.area-flow { display: flex; flex-wrap: wrap; gap: 9px; }
.area-flow span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- faq ---------- */

.faq { display: grid; gap: 0; max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 4px;
  font-weight: 700;
  font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--brass); flex: none; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 20px; color: var(--ink-soft); max-width: 65ch; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--paper-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.cta-inner { display: grid; gap: 18px; justify-items: start; max-width: 720px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- footer ---------- */

footer.site { background: var(--ink-2); color: rgba(247, 242, 233, 0.75); font-size: 0.83rem; padding: 44px 0 110px; }
@media (min-width: 880px) { footer.site { padding-bottom: 44px; } }
footer.site .foot-grid { display: grid; gap: 20px; }
footer.site .foot-brand { font-family: var(--font-display); color: var(--paper-ink); font-size: 1.1rem; font-weight: 640; }
footer.site p { max-width: 90ch; line-height: 1.65; }
footer.site a { color: var(--brass-bright); }
.eho { display: flex; align-items: center; gap: 9px; margin-top: 6px; }
.eho svg { flex: none; opacity: 0.85; }

/* ---------- sticky mobile bar ---------- */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 0.95rem; }
@media (min-width: 880px) { .sticky-cta { display: none; } }

/* Below 880px the sticky bottom bar already carries both CTAs, so the header
   button is a duplicate that wraps to four lines on a phone. Hide it there.
   Only index, zh and renovate have this button; thank-you and privacy carry a
   phone link alone, so they are unaffected. */
@media (max-width: 879px) { .site-actions > .btn { display: none; } }

/* ---------- reveal on load ---------- */

.reveal { opacity: 0; transform: translateY(14px); animation: rise 0.6s ease forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.26s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- thank you ---------- */

.ty-wrap { min-height: 62vh; display: grid; align-items: center; padding: 70px 0; }
.ty-card { max-width: 640px; display: grid; gap: 18px; }
.ty-mark { width: 58px; height: 58px; border-radius: 50%; background: var(--ink); color: var(--brass-bright); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.ty-next { display: grid; gap: 12px; margin-top: 8px; }
.ty-next .row { display: flex; gap: 12px; align-items: baseline; color: var(--ink-soft); }
.ty-next .row b { color: var(--ink); }
.ty-next .row .k { font-family: var(--font-display); font-style: italic; color: var(--brass); flex: none; }

/* ---------- thank-you CMA bonus widget ---------- */

.ty-cma { margin-top: 26px; display: grid; gap: 10px; }
.ty-cma .cma-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ty-cma iframe { display: block; width: 100%; height: 380px; border: 0; }
.ty-cma h2 { font-size: 1.2rem; }
.ty-cma p { color: var(--ink-soft); font-size: 0.92rem; max-width: 58ch; }

/* ---------- prose (privacy) ---------- */

.prose { max-width: 760px; display: grid; gap: 14px; padding: 60px 0 90px; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; }
.prose h2 { font-size: 1.25rem; margin-top: 18px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 0.97rem; }
.prose ul { padding-left: 22px; }

/* ---------- address autocomplete (quiz step 1) ---------- */

.addr-wrap { position: relative; }
.sugg {
  position: absolute; top: calc(100% - 2px); left: 0; right: 0; z-index: 40;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  box-shadow: 0 14px 30px rgba(20, 26, 24, 0.14); overflow: hidden;
}
.sugg button {
  display: block; width: 100%; text-align: left; padding: 11px 14px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); line-height: 1.35;
}
.sugg button + button { border-top: 1px solid var(--paper-3); }
.sugg button:hover, .sugg button.hl { background: var(--paper-2); }
