:root {
  --ink: #1C1B18;
  --deep: #0E1B2A;
  --blue-soft: #162B3F;
  --green: #0E1B2A;
  --success: #17874B;
  --gold: #B88A44;
  --gold-soft: #D7B46F;
  --text: #1C1B18;
  --muted: #6D675F;
  --paper: #FBFAF7;
  --card: #FFFFFF;
  --wash: #F0EDE7;
  --line: #DED9D1;
  --shadow: 0 22px 45px rgba(14, 27, 42, .12);
  --maxw: 1180px;
  --font-body: "Dosis", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-heading: "Playfair Display", "Noto Serif TC", "Songti TC", serif;
  --font-form: "Roboto", "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
svg {
  width: 1.18em;
  height: 1.18em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sprite { display: none; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; letter-spacing: 0; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--deep);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(100% - 44px, var(--maxw));
  margin: 0 auto;
}

.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 15px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  border-bottom: 1px solid rgba(184, 138, 68, .9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 28px rgba(14, 27, 42, .08); }

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.brand-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-heading);
  color: var(--deep);
  font-size: 25px;
  font-weight: 700;
}

.brand-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
}

.site-menu a,
.site-menu span {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 22px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 28px;
  background: var(--deep);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-cta svg {
  width: 1em;
  height: 1em;
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue-soft);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep);
  font-family: var(--font-form);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--gold);
  width: 1em;
  height: 1em;
}

.side-drawer {
  position: fixed;
  top: 142px;
  right: 0;
  z-index: 70;
  --drawer-shift: 602px;
  width: 620px;
  max-width: calc(100vw - 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,231,218,.72)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(14, 27, 42, .22);
  transition: none;
}

.side-drawer.is-ready {
  transition: right .25s ease, transform .25s ease;
}

.side-drawer.is-collapsed {
  right: calc(-1 * var(--drawer-shift));
  transform: none;
}

.side-drawer.is-collapsed .side-content {
  visibility: hidden;
}

.side-toggle {
  position: absolute;
  left: -44px;
  top: -1px;
  width: 44px;
  height: 54px;
  border: 1px solid var(--line);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: -8px 12px 22px rgba(14, 27, 42, .16);
}

.side-content {
  position: relative;
  padding: 34px 34px 30px;
}

.side-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
}

.side-content > p {
  color: var(--gold);
  font-size: 17px;
  font-weight: 500;
}

.side-content ul {
  list-style: none;
  margin: 14px 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.side-content li {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--deep);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  font-size: 21px;
  font-weight: 500;
}

.side-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.side-contact a,
.side-contact button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: var(--wash);
  color: var(--ink);
  cursor: pointer;
  padding: 0 14px;
  text-align: left;
}

.side-contact a:first-child svg { color: var(--gold); }
.side-contact button svg { color: var(--success); }
.side-contact a:nth-child(3) svg { color: var(--deep); }

.side-contact .side-address {
  background: transparent;
  color: var(--gold);
  justify-content: flex-start;
  padding-left: 0;
}

.side-address {
  grid-column: auto;
  color: var(--gold);
  font-size: 17px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  display: grid;
  gap: 10px;
}

.floating-action {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14,27,42,.18);
  cursor: pointer;
}

.floating-action span { display: none; }

.floating-action:first-child { background: var(--gold); }
.floating-action:nth-child(2) { background: var(--success); }
.floating-action:nth-child(3) { background: var(--blue-soft); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 0;
  padding: 76px 0 54px;
  background: #fff;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56%;
  display: none;
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  position: relative;
  width: min(100% - 44px, var(--maxw));
  max-width: var(--maxw);
  min-height: 0;
  margin: 0 auto;
  padding-left: 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 820px;
  min-height: 0;
  padding: 18px 0 0;
}

.eyebrow,
.form-kicker {
  color: var(--gold);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-heading);
  color: var(--green);
  font-weight: 500;
  line-height: 1.25;
}

h1 {
  font-family: "Noto Serif TC", var(--font-heading);
  font-size: clamp(70px, 5.7vw, 94px);
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 24px;
}

h2 { font-size: 48px; }

h3 {
  color: var(--green);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.35;
}

.hero-lede {
  max-width: 530px;
  margin-top: 24px;
  color: var(--text);
  font-family: "Noto Serif TC", var(--font-heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.52;
  white-space: nowrap;
}

.hero-lede span { display: block; }

.hero-subline {
  position: relative;
  margin-top: 28px;
  padding-top: 20px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 400;
}

.hero-subline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  align-self: flex-start;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  width: auto;
  max-width: 100%;
  margin-top: 36px;
}

.hero-actions .btn {
  position: relative;
  width: auto;
  min-height: auto;
  padding: 0 18px;
  border: 0;
  background: transparent;
  gap: 0;
  font-size: 17px;
  text-transform: none;
  line-height: 1.2;
}

.hero-actions .btn:first-child {
  padding-left: 0;
}

.hero-actions .btn:not(:last-child) {
  border-right: 1px solid rgba(28, 27, 24, .24);
}

.btn-line-hero {
  min-width: 0;
  color: var(--success);
}

.hero-actions .btn-link:nth-child(2) {
  min-width: 0;
  color: var(--gold);
}

.hero-actions .btn-link:nth-child(3) {
  min-width: 0;
  color: var(--ink);
}

.contact-pill {
  min-width: 132px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
  cursor: pointer;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary,
.btn-submit {
  background: var(--deep);
  color: #fff;
}

.btn-submit {
  background: var(--gold);
}

.hero-actions .btn-primary {
  background: transparent;
  color: var(--success);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-submit:hover,
.btn-submit:focus-visible {
  background: #A47732;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: transparent;
  color: #12663f;
}

.btn-link {
  min-height: auto;
  padding: 0 0 5px;
  border-bottom-color: var(--gold);
  color: var(--ink);
}

.hero-actions .btn-link {
  min-height: auto;
  padding: 0 18px;
  border: 0;
  background: transparent;
}

.hero-actions .btn-link:not(:last-child) {
  border-right: 1px solid rgba(28, 27, 24, .24);
}

.hero-actions .btn:hover,
.hero-actions .btn:focus-visible {
  opacity: .78;
  outline: 0;
}

.hero-actions .btn svg {
  display: none;
}

.hero-actions .btn-primary svg {
  color: #fff;
}

.hero-actions .btn-link svg {
  color: var(--deep);
}

.hero-info-bar {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 5;
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: 1.15fr 1.08fr 1fr;
  gap: 1px;
  margin-top: 44px;
  padding: 20px 22px;
  background: rgba(14, 27, 42, .96);
  border: 1px solid rgba(14, 27, 42, .96);
  box-shadow: 0 18px 42px rgba(14,27,42,.12);
  backdrop-filter: blur(10px);
}

.hero-info-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 13px;
  padding: 0 16px;
  color: #fff;
}

.hero-info-item svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.hero-info-item span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.hero-info-item b {
  margin-top: 2px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.btn-light {
  background: #fff;
  color: var(--deep);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
}

.btn-line-solid {
  background: var(--success);
  color: #fff;
}

.btn-phone-gold {
  background: var(--gold);
  color: #fff;
}

.btn-line-solid:hover,
.btn-line-solid:focus-visible {
  background: #12663f;
  color: #fff;
}

.btn-phone-gold:hover,
.btn-phone-gold:focus-visible {
  background: #A47732;
  color: #fff;
}

.hero-media {
  position: relative;
  height: auto;
  min-height: 660px;
  width: calc(100% + clamp(92px, 8vw, 132px));
  margin-left: calc(-1 * clamp(92px, 8vw, 132px));
  overflow: hidden;
  border-left: 0;
  box-shadow: none;
  cursor: pointer;
  background: #fff;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .28s ease;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-media:hover img,
.hero-media:focus-visible img {
  transform: scale(1.018);
}

.hero-media:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.hero-media::after {
  display: none;
  content: none;
}

.asset-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  background: var(--deep);
  color: #fff;
}

.asset-strip a {
  min-height: 88px;
  padding: 18px 20px;
  border-left: 1px solid rgba(184, 138, 68, .46);
  transition: background .16s ease;
}

.asset-strip a:hover,
.asset-strip a:focus-visible {
  background: rgba(255,255,255,.08);
  outline: 0;
}

.asset-strip span {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 500;
}

.asset-strip b {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition:
      opacity .62s ease,
      transform .62s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.reveal-from-right {
    transform: translate3d(42px, 0, 0);
  }

  .reveal-on-scroll.reveal-soft {
    transform: translate3d(0, 8px, 0);
    transition:
      opacity .38s ease,
      transform .38s cubic-bezier(.2, .8, .2, 1);
  }

  .reveal-on-scroll.reveal-soft.reveal-from-right {
    transform: translate3d(10px, 0, 0);
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.estimate-card {
  grid-column: 1 / 3;
  width: min(100%, 980px);
  margin: 42px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  box-shadow: 0 0 30px rgba(14, 27, 42, .12);
  padding: 42px 46px;
}

.estimate-card h2 {
  color: var(--green);
  font-size: 32px;
  margin: 4px 0 26px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font-form);
  font-size: 16px;
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 94px;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 138, 68, .16);
}

.wide-field { margin-top: 18px; }
.estimate-card .btn-submit { width: 100%; margin-top: 20px; }

.estimate-card-modal {
  grid-column: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.estimate-card-modal .form-kicker {
  margin-top: 0;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.form-note:empty { display: none; }

.proof-section {
  padding: 74px 0;
  background: var(--wash);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.proof-grid > div:first-child {
  grid-column: 1 / -1;
  text-align: center;
}

.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.proof-item span,
.process-grid span,
.valuation-list span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.valuation-list span { font-size: 16px; }

.proof-item h3 {
  margin-top: 10px;
  font-size: 27px;
}

.proof-item p {
  margin-top: 10px;
  color: var(--muted);
}

.section { padding: 104px 0; }

.split-section {
  padding: 92px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 56px;
}

.split-image {
  width: 75%;
  min-height: 420px;
  overflow: hidden;
  justify-self: start;
  box-shadow: 0 18px 36px rgba(14,27,42,.12);
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--text);
  max-width: 560px;
}

.split-copy > .eyebrow,
.split-copy > h2,
.split-copy > p:not(.eyebrow) {
  transform: translateY(-18px);
}

.text-link {
  display: inline-flex;
  border: 0;
  background: transparent;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  cursor: pointer;
}

.services-section { background: #fff; }

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.centered {
  justify-items: center;
  text-align: center;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
}

.asset-card {
  background: #fff;
  min-width: 0;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(14,27,42,.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.asset-card:hover,
.asset-card:focus-visible {
  position: relative;
  z-index: 2;
  transform: scale(1.035);
  box-shadow: 0 22px 46px rgba(14,27,42,.16);
  outline: 0;
}

.asset-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.asset-card:nth-child(2) img { object-position: center 38%; }
.asset-card:nth-child(3) img { object-position: center center; }

.asset-card div {
  padding: 26px 24px 30px;
}

.asset-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.asset-card h3 { margin-top: 8px; }

.asset-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.asset-card::after {
  content: "點擊查看估價重點";
  display: block;
  padding: 0 24px 24px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
}

.process-section {
  background: #fff;
  color: var(--text);
  padding: 92px 0 104px;
}

.process-layout {
  width: min(100% - 96px, 1840px);
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: 92px;
  align-items: start;
}

.process-head {
  position: sticky;
  top: 132px;
  min-height: 0;
  display: block;
  padding-top: 8px;
  margin-bottom: 0;
}

.process-section h2,
.process-section h3 {
  color: var(--ink);
}

.process-section h2 {
  max-width: 560px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.process-head p {
  max-width: 380px;
  margin-top: 20px;
  color: rgba(28,27,24,.62);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.process-grid article {
  background: transparent;
  min-height: 0;
  padding: 42px 0 46px;
  position: relative;
  z-index: 1;
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0 42px;
  align-items: start;
}

.process-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  font-family: var(--font-body);
  font-size: clamp(34px, 3vw, 46px);
  color: rgba(28,27,24,.28);
  font-weight: 600;
  line-height: 1.05;
  padding-top: 6px;
}

.process-grid h3 {
  margin-top: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 800;
  line-height: 1.24;
}

.process-grid p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(28,27,24,.58);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.process-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-link:hover,
.process-link:focus-visible {
  color: var(--gold);
}

.valuation-section { background: var(--wash); }

.valuation-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.valuation-grid > div:first-child p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.valuation-list {
  display: grid;
  gap: 24px;
  background: transparent;
  border: 0;
  position: relative;
  overflow: visible;
}

.valuation-list article {
  background: #fff;
  padding: 2px 0 2px 22px;
  border-left: 2px solid var(--ink);
  position: relative;
  z-index: 1;
  transition: color .18s ease;
}

.valuation-list article:hover,
.valuation-list article:focus-within {
  color: var(--gold);
  transform: none;
  z-index: 2;
  box-shadow: none;
}

.valuation-list h3 {
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
}

.questions-section { background: #fff; }

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.question-grid article {
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: start;
  gap: 12px 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.question-grid article:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(184, 138, 68, .68);
  box-shadow: 0 20px 38px rgba(14,27,42,.12);
}

.person-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  background: var(--wash);
  grid-row: 1 / span 2;
  position: relative;
}

.person-icon.alt { color: var(--green); }

.question-grid .person-icon::after {
  content: "：";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-52%);
  color: currentColor;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
}

.question-grid p {
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.32;
}

.question-grid article > span:not(.person-icon) {
  grid-column: 2;
  color: var(--muted);
  font-size: 17px;
}

.question-grid .person-icon {
  color: var(--gold);
}

.question-grid .person-icon.alt {
  color: var(--green);
}

.reviews-section {
  background: var(--wash);
}

.review-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--gold);
}

.review-summary span,
.review-person p {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
}

.review-summary b {
  color: var(--green);
  font-size: 20px;
  font-weight: 500;
}

.review-summary em {
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 16px 32px rgba(14,27,42,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.review-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(184, 138, 68, .68);
  box-shadow: 0 24px 46px rgba(14,27,42,.13);
}

.review-person {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.review-avatar {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: cover;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 16px rgba(14,27,42,.12);
}

.review-person h3 {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
}

.review-card > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-band {
  background: var(--deep);
  color: #fff;
  padding: 76px 0;
}

.contact-band h2 { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-actions button { cursor: pointer; }

.contact-actions .btn {
  transition: none;
  transform: none;
}

.contact-actions .btn:hover,
.contact-actions .btn:focus-visible {
  transform: none;
}

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 42, .82);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  isolation: isolate;
  width: min(100%, 1120px);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: -48px;
  transform: translateY(10px);
  z-index: 30;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(184, 138, 68, .08);
  outline: 1px solid rgba(184, 138, 68, .32);
}

.modal-body {
  position: relative;
  z-index: 1;
  padding: 62px 46px 46px;
}

.line-modal {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.line-qr {
  border: 1px solid var(--line);
  padding: 18px;
  background: #fff;
}

.line-qr img {
  width: 100%;
  aspect-ratio: 1;
}

.modal-body h2 { font-size: 42px; }

.modal-body p {
  margin-top: 14px;
  color: var(--muted);
}

.line-id {
  display: grid;
  gap: 2px;
  color: var(--green);
}

.line-id span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
}

.line-id b {
  color: var(--green);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.modal-actions,
.modal-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.modal-contact a,
.modal-contact button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  cursor: pointer;
  padding: 0 14px;
}

.modal-contact a:first-child {
  background: var(--gold);
  color: #fff;
}

.modal-contact button {
  background: var(--success);
  color: #fff;
}

.modal-contact a:nth-child(3) {
  background: var(--blue-soft);
  color: #fff;
}

.modal-contact a:nth-child(4) {
  background: transparent;
  border: 0;
  color: var(--green);
  flex: 0 0 auto;
  white-space: nowrap;
}

.modal-contact a:nth-child(4) span {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.process-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-modal-grid article {
  background: var(--wash);
  padding: 28px;
}

.process-modal-grid span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 500;
}

.process-modal-grid h3 { margin-top: 16px; }

.process-modal-content > p:not(.eyebrow) {
  margin-top: 8px;
}

.asset-modal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.asset-modal-head {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.asset-callout-strip {
  position: relative;
  --asset-img-width: 56%;
  --asset-img-left: 50%;
  --asset-img-top: 52%;
  --asset-line-w: clamp(178px, 21vw, 238px);
  --asset-label-x: clamp(38px, 5.2%, 62px);
  --asset-label-top: 44px;
  --asset-label-bottom: 46px;
  --asset-top-angle-left: 24deg;
  --asset-top-angle-right: -24deg;
  --asset-bottom-angle-left: -16deg;
  --asset-bottom-angle-right: 16deg;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.94), rgba(246,245,241,.82) 58%, rgba(229,225,216,.9)),
    var(--wash);
  border: 1px solid var(--line);
  overflow: hidden;
}

.asset-callout-strip::after {
  content: none;
  display: none;
  pointer-events: none;
}

.asset-callout-strip img {
  position: absolute;
  left: var(--asset-img-left);
  top: var(--asset-img-top);
  z-index: 1;
  width: var(--asset-img-width);
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 26px rgba(14,27,42,.18));
}

.asset-callout-car {
  --asset-img-width: 66%;
  --asset-img-top: 53%;
  --asset-line-w: clamp(188px, 22vw, 246px);
}

.asset-callout-motorcycle {
  --asset-img-width: 52%;
  --asset-img-top: 53%;
  --asset-line-w: clamp(188px, 22vw, 246px);
}

.asset-callout-gold {
  --asset-img-width: 34%;
  --asset-img-top: 52%;
  --asset-line-w: clamp(258px, 29vw, 314px);
}

.asset-callout-watch {
  --asset-img-width: 34%;
  --asset-img-top: 53%;
  --asset-line-w: clamp(210px, 24vw, 258px);
}

.asset-callout {
  position: absolute;
  z-index: 3;
  display: block;
  color: var(--deep);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.asset-callout b {
  position: relative;
  z-index: 2;
  display: block;
  min-width: 82px;
  padding: 6px 0 6px 12px;
  background: transparent;
  border-left: 2px solid var(--ink);
  box-shadow: none;
}

.asset-callout::before {
  content: none;
  display: none;
}

.asset-callout.top-left { left: var(--asset-label-x); top: var(--asset-label-top); }
.asset-callout.top-right { right: var(--asset-label-x); top: var(--asset-label-top); }
.asset-callout.bottom-left { left: var(--asset-label-x); bottom: var(--asset-label-bottom); }
.asset-callout.bottom-right { right: var(--asset-label-x); bottom: var(--asset-label-bottom); }

.asset-callout.top-left::before,
.asset-callout.bottom-left::before {
  left: calc(100% - 1px);
  transform-origin: left center;
}

.asset-callout.top-right::before,
.asset-callout.bottom-right::before {
  right: calc(100% - 1px);
  transform-origin: right center;
}

.asset-callout.bottom-left::before,
.asset-callout.bottom-right::before {
  width: var(--asset-bottom-line-w, var(--asset-line-w));
}

.asset-callout.top-left::before { transform: rotate(var(--asset-top-angle-left)); }
.asset-callout.top-right::before { transform: rotate(var(--asset-top-angle-right)); }
.asset-callout.bottom-left::before { transform: rotate(var(--asset-bottom-angle-left)); }
.asset-callout.bottom-right::before { transform: rotate(var(--asset-bottom-angle-right)); }

.asset-modal-copy h3 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  margin-top: 2px;
}

.asset-modal-copy ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: var(--text);
}

.asset-modal-copy li {
  border: 0;
  border-left: 2px solid var(--ink);
  background: #fff;
  padding: 2px 0 2px 14px;
}

.modal-estimate {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.modal-estimate h3 {
  font-family: var(--font-heading);
  font-weight: 500;
}

.modal-estimate .field-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.modal-estimate .btn-submit {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 54px 0 24px;
}

.footer-grid {
  width: min(100% - 96px, 1320px);
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(110px, .58fr) minmax(110px, .58fr) minmax(210px, .86fr);
  gap: 38px;
  align-items: start;
}

.footer-wordmark {
  display: inline-block;
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.footer-intro p {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(28,27,24,.60);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-intro) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid h3 {
  margin-bottom: 5px;
  color: rgba(28,27,24,.58);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a:not(.footer-wordmark),
.footer-grid span {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-grid a:not(.footer-wordmark):hover,
.footer-grid a:not(.footer-wordmark):focus-visible {
  color: var(--gold);
}

.footer-contact-link {
  display: inline-flex !important;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 2px;
}

.footer-grid .footer-contact-link span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.footer-bottom {
  width: min(100% - 96px, 1320px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(28,27,24,.48);
  font-size: 11px;
}

.site-footer .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .asset-grid { grid-template-columns: repeat(2, 1fr); }
  .side-drawer { top: 148px; }
}

@media (max-width: 940px) {
  body { font-size: 17px; }
  .topbar-inner { justify-content: flex-start; gap: 14px; padding: 8px 0; }
  .nav {
    grid-template-columns: auto auto;
    min-height: 74px;
  }
  .header-actions { display: none; }
  .header-cta { display: none; }
  .menu-toggle {
    display: block;
    justify-self: end;
  }
  .site-menu {
    grid-column: 1 / 3;
    display: none;
    width: 100%;
    padding: 12px 0 20px;
    border-top: 1px solid var(--line);
  }
  .site-menu.is-open {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }
  .site-menu a,
  .site-menu span {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: auto;
    padding: 44px 0 70px;
  }
  .hero::before {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100% - 44px, var(--maxw));
    max-width: var(--maxw);
    min-height: auto;
    margin: 0 auto;
    padding-left: 0;
  }
  .hero-copy {
    min-height: auto;
    padding: 18px 0 28px;
  }
  h1 { font-size: 56px; }
  h2 { font-size: 38px; }
  .hero-media {
    height: 520px;
    min-height: 0;
    width: 100%;
    margin-left: 0;
    border: 1px solid rgba(184,138,68,.5);
  }
  .hero-media img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-media::after {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-actions {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
  }
  .hero-info-bar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding: 18px 0;
    border-left: 1px solid rgba(184,138,68,.42);
  }
  .hero-info-item {
    padding: 12px 22px;
  }
  .estimate-card {
    grid-column: auto;
    margin: 28px auto 0;
    padding: 34px 28px;
  }
  .proof-grid,
  .split-grid,
  .process-layout,
  .valuation-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid { gap: 22px; }
  .split-grid { gap: 34px; }
  .process-layout,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 44px, var(--maxw));
  }
  .split-image,
  .split-image img {
    min-height: 0;
    width: 100%;
    height: 420px;
  }
  .process-head {
    position: static;
    min-height: 0;
    display: grid;
    align-items: start;
    padding-top: 0;
  }
  .process-section h2 {
    max-width: 100%;
    font-size: 42px;
    white-space: normal;
  }
  .process-head p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 18px;
  }
  .process-grid,
  .question-grid,
  .process-modal-grid,
  .asset-modal,
  .line-modal {
    grid-template-columns: 1fr;
  }
  .contact-actions { justify-content: flex-start; }
  .side-drawer {
    top: auto;
    bottom: 96px;
  }
}

@media (max-width: 940px) and (orientation: landscape) {
  body {
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 42% 58%;
    align-items: center;
  }

  .hero-copy {
    padding: 28px 24px 50px 0;
  }

  .hero-media {
    height: min(520px, calc(100vh - 118px));
    min-height: 330px;
    width: calc(100% + 110px);
    margin-left: -110px;
  }
  .hero-media img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-media::after {
    display: none;
    content: none;
  }

  .side-drawer {
    top: 108px;
    right: 0;
    bottom: auto;
    width: min(520px, calc(100vw - 58px));
    max-width: calc(100vw - 58px);
    max-height: calc(100vh - 124px);
    overflow: visible;
    transform: none;
    z-index: 70;
  }

  .side-drawer.is-ready {
    transition: transform .25s ease;
  }

  .side-drawer.is-collapsed {
    transform: translateX(calc(var(--drawer-shift) - 2px));
  }

  .side-drawer .side-toggle,
  .side-drawer.is-ready:not(.is-collapsed) .side-toggle {
    position: absolute;
    left: -44px;
    right: auto;
    top: -1px;
    bottom: auto;
    width: 44px;
    height: 54px;
  }

  .side-content {
    max-height: calc(100vh - 124px);
    overflow: auto;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
    font-size: 16px;
    line-height: 1.62;
  }

  .wrap { width: min(100% - 28px, var(--maxw)); }

  .topbar {
    font-size: 12px;
  }

  .topbar-inner {
    min-height: 0;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 7px 0;
  }

  .topbar-inner span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .topbar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 66px;
    gap: 8px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }
  .brand-logo img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong { font-size: 20px; }
  .brand-copy span { font-size: 11px; }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 0;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    font-size: 14px;
    white-space: nowrap;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .site-menu {
    grid-column: 1 / 4;
  }

  .hero {
    padding: 24px 0 46px;
  }

  .hero-copy {
    display: flex;
    min-height: auto;
    padding: 8px 0 22px;
  }

  .eyebrow,
  .form-kicker {
    font-size: 14px;
  }

  .hero-lede {
    margin-top: 12px;
    font-size: 16px;
    white-space: nowrap;
  }

  .hero-subline {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 15px;
  }

  h1 {
    font-size: 48px;
    margin-top: 10px;
  }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }

  .hero-media {
    margin-top: 20px;
  }

  .hero-actions {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    margin-top: 20px;
    width: 100%;
    max-width: none;
  }

  .hero-actions .btn {
    width: auto;
    min-height: auto;
    padding: 0 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-actions .btn:first-child {
    padding-left: 0;
  }

  .hero-actions .btn-link {
    border: 0;
    padding: 0 12px;
  }

  .hero-actions .btn:not(:last-child),
  .hero-actions .btn-link:not(:last-child) {
    border-right: 1px solid rgba(28, 27, 24, .24);
  }

  .contact-pill {
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 15px;
  }

  .hero-info-bar {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 8px 0;
  }

  .hero-info-item {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 11px 14px;
  }

  .hero-info-item svg {
    width: 30px;
    height: 30px;
  }

  .hero-info-item b {
    font-size: 14px;
  }

  .hero-media {
    height: 300px;
    border: 1px solid rgba(184,138,68,.5);
  }

  .asset-strip {
    left: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .asset-strip a {
    min-height: 54px;
    padding: 8px 10px;
  }

  .asset-strip span {
    font-size: 12px;
  }

  .asset-strip b {
    font-size: 15px;
  }

  .estimate-card {
    margin-top: 22px;
    padding: 18px 14px;
  }

  .estimate-card h2 {
    font-size: 25px;
    margin-bottom: 14px;
  }

  .field-grid {
    gap: 12px;
  }

  .estimate-card .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .wide-field {
    margin-top: 12px;
  }

  input,
  select {
    height: 40px;
  }

  textarea {
    min-height: 62px;
  }

  .estimate-card textarea {
    height: 72px;
    min-height: 0;
  }

  .estimate-card .btn-submit {
    min-height: 46px;
    margin-top: 14px;
  }

  .estimate-card-modal {
    margin: 0;
    padding: 0;
  }

  label {
    gap: 6px;
    font-size: 13px;
  }

  .section { padding: 54px 0; }
  .proof-section { padding: 48px 0; }

  .proof-grid {
    gap: 14px;
  }

  .proof-grid > div:first-child {
    text-align: left;
  }

  .proof-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 3px 14px;
    align-items: start;
    padding-top: 16px;
  }

  .proof-item span {
    grid-column: 1;
    grid-row: 1;
    padding-left: 8px;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .proof-item h3 {
    grid-column: 1;
    grid-row: 2;
    padding-left: 8px;
    margin-top: 0;
    font-size: 22px;
    line-height: 1.25;
  }

  .proof-item p {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.58;
  }

  .split-section {
    padding-bottom: 12px;
  }

  .split-copy p:not(.eyebrow) {
    margin-top: 14px;
  }

  .text-link {
    margin-top: 12px;
  }

  .services-section {
    padding-top: 18px;
  }

  .split-image,
  .split-image img {
    height: 290px;
  }

  .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .asset-card {
    border: 0;
    box-shadow: 0 10px 22px rgba(14,27,42,.06);
  }

  .asset-card img { height: 116px; }
  .asset-card div { padding: 12px 12px 10px; }
  .asset-card span { font-size: 12px; }
  .asset-card h3 {
    margin-top: 4px;
    font-size: 20px;
  }
  .asset-card p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.48;
  }
  .asset-card::after {
    padding: 0 12px 12px;
    font-size: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding: 70px 0 74px;
  }

  .process-head {
    gap: 6px;
    margin-bottom: 18px;
  }

  .process-grid article {
    min-height: 0;
    padding: 30px 0 34px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0 16px;
  }

  .process-grid span {
    font-size: 28px;
  }

  .process-grid h3 {
    margin-top: 0;
    font-size: 26px;
    line-height: 1.28;
  }

  .process-grid p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .process-link {
    margin-top: 18px;
    font-size: 13px;
  }

  .valuation-list {
    width: 90%;
    margin: 8px auto 0;
  }

  .valuation-section {
    padding: 42px 0 34px;
  }

  .valuation-grid {
    gap: 8px;
  }

  .valuation-grid > div:first-child p:not(.eyebrow) {
    margin-top: 12px;
  }

  .valuation-list article { padding: 14px 16px; }
  .valuation-list span { font-size: 14px; }

  .valuation-list h3 {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.35;
  }

  .question-grid {
    gap: 14px;
  }

  .question-grid article {
    min-height: 0;
    padding: 14px 12px;
  }
  .contact-band { padding: 58px 0; }
  .btn { width: 100%; }
  .contact-actions { width: 100%; }

  .modal {
    align-items: center;
    padding: 22px 12px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 44px - env(safe-area-inset-bottom));
  }

  .modal-close {
    width: 48px;
    height: 48px;
  }

  .modal-body {
    padding: 58px 18px 28px;
  }

  .modal-body h2 { font-size: 31px; }

  .line-modal {
    gap: 20px;
  }

  .line-qr {
    width: min(100%, 220px);
    justify-self: center;
    padding: 14px;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .modal-actions .btn {
    width: auto;
    font-size: 15px;
  }

  .asset-modal {
    gap: 18px;
  }

  .asset-modal-head {
    padding-left: 14px;
  }

  .asset-callout-strip {
    --asset-line-w: clamp(96px, 26vw, 110px);
    --asset-label-x: 10px;
    --asset-label-top: 44px;
    --asset-label-bottom: 38px;
    --asset-top-angle-left: 36deg;
    --asset-top-angle-right: -36deg;
    --asset-bottom-line-w: clamp(80px, 22vw, 92px);
    --asset-bottom-angle-left: -22deg;
    --asset-bottom-angle-right: 22deg;
    min-height: 260px;
  }

  .asset-callout-car {
    --asset-img-width: 82%;
    --asset-img-top: 53%;
    --asset-line-w: clamp(100px, 27vw, 112px);
  }

  .asset-callout-motorcycle {
    --asset-img-width: 70%;
    --asset-img-top: 53%;
    --asset-line-w: clamp(98px, 26vw, 110px);
  }

  .asset-callout-gold {
    --asset-img-width: 44%;
    --asset-img-top: 52%;
    --asset-line-w: clamp(100px, 27vw, 112px);
  }

  .asset-callout-watch {
    --asset-img-width: 42%;
    --asset-img-top: 53%;
  }

  .asset-callout {
    font-size: 11.5px;
  }

  .asset-callout b {
    min-width: 58px;
    padding: 5px 7px;
  }

  .asset-modal-copy h3 {
    font-size: 25px;
  }

  .modal-estimate {
    padding: 18px;
  }

  .process-modal-content .process-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .process-modal-content .process-modal-grid article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .process-modal-content .process-modal-grid article {
    padding: 10px 8px;
  }

  .process-modal-content .process-modal-grid span {
    font-size: 22px;
  }

  .process-modal-content .process-modal-grid h3 {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  .process-modal-content .process-modal-grid p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.42;
  }

  .asset-modal-copy ul,
  .modal-estimate .field-grid {
    grid-template-columns: 1fr;
  }

  .question-grid article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 13px;
  }

  .person-icon {
    width: 34px;
    height: 34px;
  }

  .question-grid .person-icon::after {
    right: -15px;
    font-size: 18px;
  }

  .question-grid p {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.3;
    white-space: nowrap;
  }

  .question-grid article > span:not(.person-icon) {
    font-size: 15px;
    line-height: 1.55;
  }

  .reviews-section {
    padding: 54px 0;
  }

  .review-summary {
    gap: 8px;
    flex-wrap: wrap;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    padding: 16px;
    box-shadow: 0 10px 24px rgba(14,27,42,.06);
  }

  .review-person {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .review-person h3 {
    font-size: 21px;
  }

  .review-person p,
  .review-summary span {
    font-size: 16px;
  }

  .review-card > p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
  }

  .modal-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .modal-contact a,
  .modal-contact button {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 0 8px;
    font-size: 13px;
  }

  .modal-contact a:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    min-height: 36px;
    background: transparent;
    border: 0;
    padding: 0 4px;
    font-size: 17px;
  }

  .modal-contact a:nth-child(4) span {
    font-size: clamp(16px, 4.4vw, 18px);
  }

  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 32px rgba(14,27,42,.12);
  }

  .floating-action {
    width: auto;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
  }

  .floating-action span {
    display: inline;
  }

  .side-drawer {
    top: 112px;
    right: -100vw;
    bottom: auto;
    width: min(360px, calc(100vw - 42px));
    max-width: none;
    max-height: calc(100vh - 190px);
    overflow: auto;
    transform: none;
    transition: none;
    z-index: 90;
  }

  .side-drawer.is-ready {
    transition: right .25s ease;
  }

  .side-drawer.is-ready:not(.is-collapsed) {
    right: 0;
  }

  .side-drawer .side-toggle {
    position: fixed;
    left: auto;
    right: 0;
    top: auto;
    bottom: calc(150px + env(safe-area-inset-bottom));
    width: 42px;
    height: 52px;
    font-size: 24px;
    z-index: 96;
  }

  .side-drawer.is-ready:not(.is-collapsed) .side-toggle {
    position: fixed;
    left: auto;
    right: min(360px, calc(100vw - 42px));
    top: 112px;
    bottom: auto;
    width: 42px;
    height: 52px;
  }

  .side-drawer.is-collapsed {
    transform: none;
  }

  .side-content {
    min-height: 0;
    display: grid;
    align-content: start;
    padding: 20px 18px 18px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,245,241,.98)),
      var(--paper);
  }

  .side-content > p {
    font-size: 18px;
  }

  .side-content ul {
    gap: 10px;
    margin: 12px 0 16px;
  }

  .side-content li {
    min-height: 50px;
    font-size: 20px;
  }

  .side-contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .side-contact a,
  .side-contact button {
    min-height: 42px;
    justify-content: center;
    padding: 0 6px;
    font-size: 12px;
  }

.side-address {
  grid-column: auto;
    text-align: center;
    font-size: 18px;
  }

  .side-contact .side-address {
    min-height: 38px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .site-footer {
    padding: 64px 0 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-wordmark {
    font-size: 22px;
  }

  .footer-intro p {
    margin-top: 12px;
    font-size: 13px;
  }

  .footer-grid h3 {
    margin-bottom: 4px;
  }

  .footer-grid a:not(.footer-wordmark),
  .footer-grid span {
    font-size: 13px;
  }

  .footer-bottom { display: grid; }
}

@media (max-width: 372px) {
  .side-drawer {
    right: -100vw;
  }

  .side-drawer.is-ready:not(.is-collapsed) {
    right: 0;
  }
}

@media (max-width: 940px) and (orientation: landscape) and (max-height: 560px) {
  body {
    padding-bottom: 0;
  }

  .floating-actions {
    left: auto;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .floating-action {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 12px 28px rgba(14,27,42,.18);
  }

  .floating-action span {
    display: none;
  }

  .side-drawer {
    top: 88px;
    right: 0;
    bottom: auto;
    width: min(520px, calc(100vw - 58px));
    max-width: calc(100vw - 58px);
    max-height: calc(100vh - 104px);
    overflow: visible;
    transform: none;
    transition: none;
    z-index: 70;
  }

  .side-drawer.is-ready {
    transition: transform .25s ease;
  }

  .side-drawer.is-ready:not(.is-collapsed) {
    right: 0;
  }

  .side-drawer.is-collapsed {
    transform: translateX(calc(var(--drawer-shift) - 2px));
  }

  .side-drawer .side-toggle,
  .side-drawer.is-ready:not(.is-collapsed) .side-toggle {
    position: absolute;
    left: -44px;
    right: auto;
    top: -1px;
    bottom: auto;
    width: 44px;
    height: 54px;
    z-index: 2;
  }

  .side-content {
    padding: 22px 24px 20px;
    max-height: calc(100vh - 104px);
    overflow: auto;
  }
}

/* 20260623 reference layout pass */
.site-header .nav {
  width: min(100% - 52px, 1320px);
}

.header-actions {
  justify-self: end;
}

.split-section {
  padding: 112px 0 86px;
  background: #fff;
}

.split-grid {
  width: min(100% - 96px, 1320px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(48px, 6vw, 92px);
}

.split-image {
  width: 100%;
  min-height: 520px;
  border-radius: 18px;
  box-shadow: none;
}

.split-image img {
  height: 520px;
  object-position: center center;
}

.split-copy {
  max-width: 660px;
}

.split-copy > .eyebrow,
.split-copy > h2,
.split-copy > p:not(.eyebrow) {
  transform: none;
}

.split-copy h2 {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 500;
  line-height: 1.12;
}

.split-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: #596270;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1.58;
}

.text-link {
  min-height: 58px;
  margin-top: 38px;
  padding: 0 28px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.services-section {
  padding: 94px 0 112px;
  background: #f8f9fb;
}

.services-section .section-head {
  justify-items: center;
  text-align: center;
  margin-bottom: 66px;
}

.services-section .section-head .eyebrow {
  display: none;
}

.services-section .section-head h2 {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: #101827;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

.services-section .section-head p:not(.eyebrow) {
  max-width: 820px;
  color: #5b6574;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 400;
  line-height: 1.45;
}

.asset-grid {
  width: min(100% - 96px, 1760px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.asset-card {
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.asset-card:hover,
.asset-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: none;
}

.asset-card img {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(14, 27, 42, .08);
}

.asset-card div {
  padding: 26px 6px 0;
}

.asset-card span {
  display: none;
}

.asset-card h3 {
  color: #101827;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.asset-card p {
  display: none;
}

.asset-card::after {
  padding: 14px 0 0;
  color: #101827;
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 700;
}

.process-section {
  background: #17171d;
  color: #fff;
  padding: 102px 0 116px;
}

.process-layout {
  width: min(100% - 96px, 1760px);
  display: block;
}

.process-head {
  position: static;
  max-width: 980px;
  padding: 0;
  margin-bottom: 104px;
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-section h2 {
  max-width: 1100px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(56px, 6vw, 102px);
  font-weight: 900;
  line-height: .98;
  white-space: normal;
}

.process-head p {
  max-width: 780px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.process-grid article {
  display: block;
  min-height: 0;
  padding: 52px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 0;
}

.process-grid article:last-child {
  border-bottom: 0;
}

.process-grid span {
  display: block;
  color: rgba(255, 255, 255, .43);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 0;
}

.process-grid h3 {
  margin-top: 42px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(28px, 2.25vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.process-grid p {
  max-width: 380px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 700;
  line-height: 1.55;
}

.process-link {
  display: none;
}

.contact-band {
  background: #fff;
  color: #17171d;
  padding: 138px 0 158px;
}

.contact-grid {
  width: min(100% - 96px, 1120px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 52px;
  text-align: center;
}

.contact-band .eyebrow {
  display: none;
}

.contact-band h2 {
  color: #17171d;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(58px, 6.2vw, 112px);
  font-weight: 900;
  line-height: .98;
}

.contact-band p:not(.eyebrow) {
  max-width: 880px;
  margin: 34px auto 0;
  color: #6b6f7a;
  font-size: clamp(21px, 1.8vw, 32px);
  font-weight: 500;
  line-height: 1.48;
}

.contact-actions {
  justify-content: center;
  gap: 18px;
}

.contact-actions .btn {
  min-width: min(100%, 420px);
  min-height: 86px;
  padding: 0 46px;
  border-radius: 0;
  background: #17171d;
  color: #fff;
  box-shadow: 8px 8px 0 rgba(14, 27, 42, .14);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 800;
  text-transform: none;
}

.contact-actions .btn-phone-gold {
  background: var(--gold);
}

.site-footer {
  background: #f8f9fb;
  padding: 76px 0 36px;
}

.footer-grid {
  width: min(100% - 96px, 1760px);
  grid-template-columns: minmax(280px, 1fr) minmax(160px, .8fr) minmax(160px, .8fr) minmax(220px, .9fr);
  gap: clamp(44px, 7vw, 128px);
}

.footer-wordmark {
  color: #111827;
  font-size: 28px;
  font-weight: 500;
}

.footer-intro p {
  max-width: 360px;
  color: #5b6574;
  font-size: 19px;
  line-height: 1.55;
}

.footer-grid h3 {
  color: #111827;
  font-size: 18px;
  letter-spacing: .08em;
}

.footer-grid a:not(.footer-wordmark),
.footer-grid span {
  color: #5b6574;
  font-size: 18px;
  font-weight: 500;
}

.footer-contact-link svg {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.footer-bottom {
  width: min(100% - 96px, 1760px);
  justify-content: center;
  margin-top: 58px;
  padding-top: 42px;
  color: #5b6574;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .site-header .nav,
  .split-grid,
  .asset-grid,
  .process-layout,
  .contact-grid,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 44px, var(--maxw));
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .asset-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-image,
  .split-image img {
    height: 420px;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar a {
    display: none;
  }

  .site-header .nav {
    width: min(100% - 28px, var(--maxw));
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .split-section,
  .services-section,
  .process-section,
  .contact-band {
    padding: 64px 0;
  }

  .split-grid,
  .process-grid,
  .asset-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-image,
  .split-image img {
    height: 300px;
  }

  .split-copy,
  .process-head,
  .process-grid article {
    max-width: 100%;
  }

  .split-copy h2 {
    font-size: 42px;
  }

  .split-copy p:not(.eyebrow),
  .process-head p,
  .process-grid p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .process-section h2 {
    font-size: 48px;
  }

  .asset-grid {
    gap: 28px;
  }

  .services-section .section-head h2 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .services-section .section-head p:not(.eyebrow) {
    font-size: 16px;
  }

  .asset-card img {
    aspect-ratio: 1.25 / 1;
  }

  .process-head {
    margin-bottom: 54px;
  }

  .process-grid article {
    padding-top: 34px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 68px;
  }

  .site-footer {
    padding-top: 54px;
  }
}

/* 20260623 mobile layout refinement */
@media (min-width: 681px) {
  .process-section {
    background: #fff;
    color: var(--text);
    padding: 112px 0 116px;
  }

  .process-layout {
    width: min(100% - 96px, 1760px);
    display: grid;
    grid-template-columns: minmax(260px, .56fr) minmax(0, 1.44fr);
    gap: clamp(72px, 9vw, 150px);
    align-items: start;
  }

  .process-head {
    position: sticky;
    top: 132px;
    max-width: 420px;
    margin: 0;
    padding-top: 8px;
  }

  .process-section h2,
  .process-section h3 {
    color: #17171d;
  }

  .process-section h2 {
    max-width: 420px;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: .98;
    white-space: normal;
  }

  .process-head p {
    max-width: 360px;
    margin-top: 28px;
    color: #6b6f7a;
    font-size: clamp(18px, 1.45vw, 25px);
    font-weight: 600;
    line-height: 1.58;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0 36px;
    min-height: 220px;
    padding: 48px 0;
    border-top: 1px solid rgba(28, 27, 24, .16);
  }

  .process-grid article:last-child {
    border-bottom: 1px solid rgba(28, 27, 24, .16);
  }

  .process-grid span {
    color: rgba(23, 23, 29, .28);
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 800;
  }

  .process-grid h3 {
    margin: 0;
    font-size: clamp(30px, 3.1vw, 52px);
    line-height: 1.12;
  }

  .process-grid p {
    max-width: 760px;
    margin-top: 24px;
    color: #6b6f7a;
    font-size: clamp(20px, 1.65vw, 29px);
    font-weight: 600;
    line-height: 1.45;
  }

  .valuation-grid {
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
    gap: clamp(72px, 9vw, 150px);
    align-items: start;
  }

  .valuation-grid > div:first-child {
    position: sticky;
    top: 132px;
  }

  .valuation-list {
    gap: 0;
    margin: 0;
    width: 100%;
  }

  .valuation-list article {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0 36px;
    min-height: 190px;
    padding: 44px 0;
    border-left: 0;
    border-top: 1px solid rgba(28, 27, 24, .16);
    background: transparent;
  }

  .valuation-list article:last-child {
    border-bottom: 1px solid rgba(28, 27, 24, .16);
  }

  .valuation-list span {
    color: rgba(23, 23, 29, .34);
    font-size: clamp(18px, 1.7vw, 27px);
    font-weight: 800;
  }

  .valuation-list h3 {
    margin: 0;
    color: #17171d;
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: clamp(28px, 2.55vw, 44px);
    font-weight: 800;
    line-height: 1.18;
  }
}

@media (max-width: 680px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: visible;
  }

  main,
  .hero,
  .services-section,
  .process-section,
  .valuation-section,
  .site-footer {
    overflow-x: clip;
  }

  .topbar {
    position: relative;
    z-index: 92;
  }

  .topbar-inner {
    justify-content: center;
    min-height: 34px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 95;
  }

  .site-header .nav {
    min-height: 68px;
    width: min(100% - 28px, var(--maxw));
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    width: 44px;
    height: 44px;
  }

  .site-menu {
    grid-column: 1 / 3;
  }

  .hero {
    padding: 58px 0 74px;
  }

  .hero-grid {
    width: min(100% - 28px, var(--maxw));
  }

  .hero-copy {
    padding: 22px 0 0;
  }

  .hero .eyebrow {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(58px, 18vw, 78px);
    line-height: 1.12;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: clamp(23px, 7vw, 34px);
    line-height: 1.45;
    white-space: normal;
  }

  .hero-subline {
    margin-top: 28px;
    padding-top: 22px;
    font-size: 21px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 38px;
    overflow-x: visible;
  }

  .hero-actions .btn {
    font-size: 18px;
    padding: 0 16px;
  }

  .hero-actions .btn:first-child {
    padding-left: 0;
  }

  .hero-info-bar {
    margin-top: 54px;
    padding: 24px 0;
  }

  .hero-info-item {
    padding: 18px 20px;
  }

  .hero-info-item span {
    font-size: 18px;
  }

  .hero-info-item b {
    font-size: 17px;
  }

  .side-drawer {
    top: 112px;
    right: 0;
    bottom: auto;
    width: min(360px, calc(100vw - 52px));
    max-width: calc(100vw - 52px);
    max-height: calc(100vh - 194px);
    overflow: visible;
    transform: none;
    transition: right .25s ease;
    z-index: 94;
  }

  .side-drawer.is-collapsed {
    right: calc(-1 * var(--drawer-shift));
    transform: none;
  }

  .side-drawer.is-ready {
    transition: right .25s ease;
  }

  .side-drawer.is-ready:not(.is-collapsed) {
    right: 0;
    transform: none;
  }

  .side-drawer .side-toggle,
  .side-drawer.is-ready:not(.is-collapsed) .side-toggle,
  .side-drawer.is-collapsed .side-toggle {
    position: fixed;
    left: auto;
    right: 0;
    top: 50vh;
    bottom: auto;
    width: 42px;
    height: 62px;
    transform: translateY(-50%);
    z-index: 96;
  }

  .side-drawer.is-collapsed .side-content {
    visibility: hidden;
  }

  .services-section {
    padding: 78px 0 84px;
  }

  .asset-grid {
    width: min(100% - 28px, var(--maxw));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .asset-card img {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .asset-card div {
    padding-top: 14px;
  }

  .asset-card h3 {
    font-size: 18px;
  }

  .asset-card::after {
    padding-top: 8px;
    font-size: 13px;
  }

  .process-section {
    background: #fff;
    color: var(--text);
    padding: 84px 0 90px;
  }

  .process-layout {
    width: min(100% - 28px, var(--maxw));
    display: grid;
    grid-template-columns: minmax(108px, 32vw) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .process-head {
    position: sticky;
    top: 82px;
    max-width: none;
    margin: 0;
    padding-top: 6px;
  }

  .process-section h2,
  .process-section h3 {
    color: #17171d;
  }

  .process-section h2 {
    font-size: clamp(32px, 9.8vw, 46px);
    line-height: 1.02;
    white-space: normal;
  }

  .process-head p {
    margin-top: 16px;
    color: #6b6f7a;
    font-size: 13px;
    line-height: 1.55;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 14px;
    min-height: 172px;
    padding: 26px 0;
    border-top: 1px solid rgba(28, 27, 24, .16);
  }

  .process-grid article:last-child {
    border-bottom: 1px solid rgba(28, 27, 24, .16);
  }

  .process-grid span {
    color: rgba(23, 23, 29, .34);
    font-size: 19px;
  }

  .process-grid h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.22;
  }

  .process-grid p {
    margin-top: 14px;
    color: #6b6f7a;
    font-size: 14px;
    line-height: 1.58;
  }

  .valuation-section {
    padding: 84px 0 78px;
  }

  .valuation-grid {
    width: min(100% - 28px, var(--maxw));
    display: grid;
    grid-template-columns: minmax(108px, 32vw) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .valuation-grid > div:first-child {
    position: sticky;
    top: 82px;
  }

  .valuation-grid > div:first-child h2 {
    font-size: clamp(27px, 8.4vw, 40px);
    line-height: 1.08;
  }

  .valuation-grid > div:first-child p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .valuation-list {
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .valuation-list article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 14px;
    min-height: 146px;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(28, 27, 24, .16);
    background: transparent;
  }

  .valuation-list article:last-child {
    border-bottom: 1px solid rgba(28, 27, 24, .16);
  }

  .valuation-list span {
    color: rgba(23, 23, 29, .34);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .valuation-list h3 {
    margin: 0;
    color: #17171d;
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.32;
  }

  .footer-grid {
    width: min(100% - 28px, var(--maxw));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-grid > div:not(.footer-intro) {
    min-width: 0;
  }

  .footer-grid a:not(.footer-wordmark),
  .footer-grid span {
    overflow-wrap: anywhere;
  }
}
