:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f0ede8;
  --bg-card: #ffffff;
  --text-primary: #1a1a1a;
  --text-body: #4a4a4a;
  --text-muted: #8a8a8a;
  --accent: #2c3e50;
  --accent-hover: #1a252f;
  --warm: #c67d5b;
  --ink: var(--text-primary);
  --ink-soft: var(--text-body);
  --ink-inverse: #fafaf8;
  --ink-inverse-soft: #f0ede8;
  --paper: var(--bg-primary);
  --white: var(--bg-card);
  --line: #e5e0d8;
  --teal: var(--accent);
  --teal-dark: var(--accent-hover);
  --coral: var(--warm);
  --blue: var(--accent);
  --blue-dark: var(--accent-hover);
  --orange-panel: var(--warm);
  --orange-panel-dark: #a7664a;
  --orange-line: #ded8cf;
  --sage: #ebe7df;
  --amber: var(--warm);
  --steel: #e8e4dc;
  --steel-dark: var(--bg-secondary);
  --rust: #9a654b;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-primary);
  font-family:
    Inter,
    "Noto Sans TC",
    "PingFang TC",
    "Microsoft JhengHei",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.72;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  color: var(--ink-inverse);
  border-bottom: 1px solid rgba(244, 179, 38, 0.24);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 251, 246, 0.94);
  box-shadow: 0 12px 36px rgba(38, 45, 50, 0.16);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #151610;
  background: var(--amber);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: -2px;
  color: currentColor;
  opacity: 0.75;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  color: var(--ink-inverse);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-crossborder-service.png");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.24) contrast(1.05) brightness(0.86);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(35, 43, 45, 0.86) 0%, rgba(47, 102, 118, 0.58) 50%, rgba(237, 240, 238, 0.18) 88%),
    linear-gradient(180deg, rgba(35, 43, 45, 0.5), rgba(35, 43, 45, 0.12) 48%, rgba(35, 43, 45, 0.66)),
    repeating-linear-gradient(135deg, rgba(255, 181, 46, 0.14) 0 7px, transparent 7px 22px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink-inverse);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 248, 234, 0.92);
  font-size: 19px;
}

.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  color: #151610;
  background: var(--teal);
  border-color: rgba(244, 179, 38, 0.7);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-live {
  color: #151610;
  background: var(--amber);
  border-color: var(--amber);
}

.button-live:hover {
  background: #ffd15a;
}

.button-outline {
  color: var(--blue-dark);
  background: transparent;
  border-color: rgba(47, 102, 118, 0.34);
}

.button-outline:hover {
  background: rgba(47, 102, 118, 0.08);
}

.button-ghost {
  color: var(--ink-inverse);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 181, 46, 0.42);
}

.button-shop {
  color: var(--ink-inverse);
  background: var(--blue);
  border-color: var(--blue);
}

.button-shop:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 56px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  background: rgba(20, 28, 31, 0.58);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.notice-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px 34px;
  background: var(--white);
  font-weight: 750;
}

.notice-item svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: var(--teal);
}

.shop-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: 26px;
  align-items: stretch;
  padding: 62px 40px;
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.12), transparent 46%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.shop-entry-copy,
.shop-entry-card {
  width: min(100%, 760px);
}

.shop-entry-copy {
  justify-self: end;
}

.shop-entry-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.18;
}

.shop-entry-copy p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 17px;
}

.shop-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.shop-entry-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  justify-self: start;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.shop-entry-card div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  padding: 20px;
  background: var(--paper);
}

.shop-entry-card svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.shop-entry-card strong {
  font-size: 19px;
}

.shop-entry-card span {
  color: var(--ink-soft);
  font-size: 14px;
}

.handoff-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 760px;
  margin-top: 22px;
  background: var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.handoff-steps article {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--white);
}

.handoff-steps span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.handoff-steps strong {
  color: var(--ink);
  font-size: 16px;
}

.handoff-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.section {
  padding: 86px 40px;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
  gap: 36px;
  align-items: center;
  padding: 74px 40px;
  background:
    linear-gradient(90deg, rgba(255, 138, 29, 0.12), transparent 46%),
    var(--steel-dark);
  border-top: 8px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--amber) 0 26px, var(--steel-dark) 26px 52px) 8;
}

.live-copy {
  justify-self: end;
  width: min(100%, 520px);
}

.live-copy h2 {
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 1.14;
}

.live-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

.live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.live-panel {
  width: min(100%, 720px);
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(255, 138, 29, 0.42);
  box-shadow: var(--shadow);
}

.live-rail {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(rgba(47, 102, 118, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 102, 118, 0.09) 1px, transparent 1px),
    #e5ebe7;
  background-size: 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.youtube-embed,
.live-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-embed[hidden],
.live-placeholder[hidden] {
  display: none;
}

.live-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  color: var(--ink);
}

.live-placeholder svg {
  width: 58px;
  height: 58px;
  color: var(--coral);
}

.live-placeholder strong {
  font-size: 24px;
}

.live-placeholder p {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 91, 53, 0.12);
}

.live-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  background: var(--line);
}

.live-checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.live-checks svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

section[id] {
  scroll-margin-top: 88px;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: #dde4e1;
}

.section-roadmap {
  background:
    linear-gradient(135deg, rgba(198, 125, 91, 0.1), transparent 42%),
    var(--bg-primary);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.roadmap-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.roadmap-grid span,
.supplier-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
}

.roadmap-grid article span {
  font-size: 24px;
  font-weight: 300;
}

.roadmap-grid h3,
.supplier-card h3,
.inspection-record h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.roadmap-grid p,
.supplier-card p,
.inspection-record dd,
.track-result {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-order {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 40px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.09), rgba(198, 125, 91, 0.1)),
    var(--bg-secondary);
}

.process-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.process-card strong {
  color: var(--ink);
  font-weight: 800;
}

.process-card span {
  color: var(--ink-soft);
}

.order-form {
  display: grid;
  gap: 16px;
  width: min(100%, 640px);
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.order-form label,
.order-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
}

.order-form textarea {
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: #8b9499;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.08);
}

.order-form fieldset {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.order-form legend {
  padding: 0 6px;
}

.order-result .order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.order-result .button {
  min-height: 44px;
  padding: 0 16px;
}

.section-tracking {
  background: var(--bg-primary);
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.tracking-demo,
.inspection-record {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tracking-header span {
  color: var(--ink-soft);
}

.tracking-header strong {
  color: var(--warm);
}

.status-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.status-steps li {
  display: grid;
  gap: 6px;
  min-height: 128px;
  padding: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.status-steps li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.status-steps strong {
  color: var(--ink);
  font-size: 15px;
}

.status-steps small {
  color: var(--ink-soft);
  line-height: 1.5;
}

.status-steps .is-done > span {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: var(--accent);
}

.status-steps .is-current {
  border-color: rgba(198, 125, 91, 0.48);
  box-shadow: inset 0 0 0 1px rgba(198, 125, 91, 0.16);
}

.status-steps .is-current > span {
  color: var(--bg-primary);
  background: var(--warm);
  border-color: var(--warm);
}

.tracking-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.tracking-search label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.tracking-search input,
.supplier-tools input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.track-result {
  display: block;
  margin-top: 14px;
  padding: 14px;
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.inspection-record dl,
.supplier-card dl {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.inspection-record div,
.supplier-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.inspection-record dt,
.supplier-card dt {
  color: var(--ink);
  font-weight: 800;
}

.inspection-record dd,
.supplier-card dd {
  margin: 0;
}

.section-member {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.08), transparent 48%),
    var(--bg-secondary);
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.member-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto 24px;
}

.member-tier {
  display: grid;
  gap: 12px;
  min-height: 390px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.member-tier.featured {
  border-color: rgba(198, 125, 91, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(198, 125, 91, 0.18),
    var(--shadow);
}

.member-tier.business {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.07), transparent),
    var(--white);
}

.member-tier span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-tier h3 {
  font-size: 23px;
}

.member-tier p {
  color: var(--ink-soft);
}

.member-tier strong {
  color: var(--ink);
  font-size: 14px;
}

.member-tier ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.member-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.portal-shell,
.payment-flow {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.portal-header span {
  color: var(--ink-soft);
}

.portal-header strong {
  color: var(--warm);
  font-size: 18px;
}

.portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 24px 0;
}

.portal-tabs button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 800;
}

.portal-tabs button.is-active {
  color: var(--ink-inverse);
  background: var(--accent);
  border-color: var(--accent);
}

.portal-panels {
  padding: 24px;
}

.portal-panel[hidden] {
  display: none;
}

.portal-panel h3,
.payment-flow h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.portal-panel p,
.payment-flow p {
  color: var(--ink-soft);
}

.portal-panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.member-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.member-fields div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--bg-card);
}

.member-fields dt {
  color: var(--ink);
  font-weight: 850;
}

.member-fields dd {
  margin: 0;
  color: var(--ink-soft);
}

.payment-flow {
  display: grid;
  gap: 12px;
  align-self: start;
  padding: 24px;
}

.payment-flow a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 14px;
  background: var(--bg-primary);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.payment-flow a:hover {
  border-color: rgba(198, 125, 91, 0.62);
  box-shadow: inset 0 0 0 1px rgba(198, 125, 91, 0.18);
}

.payment-flow span {
  color: var(--ink);
  font-weight: 850;
}

.payment-flow strong {
  color: var(--warm);
  white-space: nowrap;
}

.member-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 24px auto 0;
}

.member-system-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.member-system-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--warm);
}

.member-system-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.member-system-grid p {
  color: var(--ink-soft);
}

.section-suppliers {
  background:
    linear-gradient(135deg, rgba(198, 125, 91, 0.09), transparent 48%),
    var(--bg-primary);
}

.supplier-tools {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  width: min(1160px, 100%);
  margin: 0 auto 18px;
}

.supplier-tools label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.supplier-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.supplier-filters button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--accent);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}

.supplier-filters button.is-active,
.supplier-filters button:hover {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: var(--accent);
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.supplier-card {
  min-height: 330px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.supplier-card.is-hidden {
  display: none;
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 36px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.furniture-copy h2,
.quote-copy h2,
.final-cta h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.18;
}

.section-heading p,
.furniture-copy p,
.quote-copy p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.11), transparent 44%),
    var(--white);
  border: 2px solid var(--orange-line);
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 236, 202, 0.16),
    0 12px 32px rgba(38, 45, 50, 0.08);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--orange-line);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.service-card p,
.flow-list p,
.faq-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.business-card {
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.11), transparent 44%),
    var(--white);
  border: 2px solid var(--orange-line);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 236, 202, 0.16);
}

.business-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--orange-line);
}

.business-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
}

.business-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-card p {
  color: var(--ink-soft);
}

.section-inspection {
  background: var(--steel-dark);
  color: var(--ink);
}

.section-inspection .section-heading p {
  color: var(--ink-soft);
}

.section-inspection .eyebrow {
  color: var(--amber);
}

.inspection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.inspection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inspection-list article,
.inspection-note {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.inspection-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 22px;
  font-weight: 900;
}

.inspection-list h3,
.inspection-note h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.inspection-list p,
.inspection-note li {
  color: var(--ink-soft);
}

.inspection-list p {
  margin-bottom: 0;
}

.inspection-note {
  align-self: stretch;
}

.inspection-note ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.inspection-standards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 18px auto 0;
}

.inspection-standards article {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.inspection-standards strong,
.inspection-standards span {
  display: block;
}

.inspection-standards strong {
  margin-bottom: 6px;
  font-size: 21px;
}

.inspection-standards span {
  color: var(--teal-dark);
  font-weight: 800;
}

.inspection-standards ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 245px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.flow-list span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--coral);
  font-size: 24px;
  font-weight: 900;
}

.flow-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.section-furniture {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(47, 102, 118, 0.1), transparent 42%),
    #eef2ef;
}

.section-furniture > * {
  width: min(100%, 620px);
}

.section-furniture .furniture-copy {
  justify-self: end;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--teal);
}

.furniture-panel {
  position: relative;
  justify-self: start;
}

.furniture-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  filter: grayscale(0.1) contrast(1.04);
  box-shadow: var(--shadow);
}

.spec-list {
  display: grid;
  gap: 1px;
  width: min(420px, calc(100% - 28px));
  margin: -54px auto 0;
  overflow: hidden;
  position: relative;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 20px 44px rgba(32, 35, 31, 0.14);
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
}

.spec-list strong {
  color: var(--teal-dark);
}

.spec-list span {
  color: var(--ink-soft);
}

.pricing-table {
  width: min(1160px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.pricing-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1fr;
  gap: 1px;
  background: var(--line);
}

.pricing-row + .pricing-row {
  border-top: 1px solid var(--line);
}

.pricing-row span {
  padding: 18px;
  background: var(--white);
}

.pricing-head span {
  color: #151610;
  background: var(--amber);
  font-weight: 900;
}

.section-shipping {
  background: #e2e8e5;
}

.shipping-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.shipping-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.shipping-row {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.8fr 1.1fr;
  gap: 1px;
  background: var(--line);
}

.shipping-row + .shipping-row {
  border-top: 1px solid var(--line);
}

.shipping-row span {
  padding: 17px;
  background: var(--white);
}

.shipping-head span {
  color: #151610;
  background: var(--amber);
  font-weight: 900;
}

.shipping-note {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(47, 102, 118, 0.22);
  border-radius: 3px;
}

.shipping-note h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.shipping-note p,
.shipping-note li {
  color: var(--ink-soft);
}

.shipping-note ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.section-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 40px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 138, 29, 0.12), rgba(47, 102, 118, 0.1)),
    linear-gradient(rgba(47, 102, 118, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 32px 32px, auto;
}

.quote-copy {
  justify-self: end;
  width: min(100%, 500px);
  position: sticky;
  top: 110px;
}

.quote-form {
  display: grid;
  gap: 16px;
  width: min(100%, 640px);
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.quote-form label,
.quote-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8b9499;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(244, 179, 38, 0.18);
}

.quote-form fieldset {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.quote-form legend {
  padding: 0 6px;
}

.choice {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  color: var(--ink-soft);
  font-weight: 650;
}

.choice input {
  min-height: auto;
  margin-top: 5px;
  accent-color: var(--teal);
}

.terms-choice {
  padding: 12px;
  color: var(--ink-soft);
  background: rgba(44, 62, 80, 0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 500;
  line-height: 1.65;
}

.order-form .terms-choice,
.quote-form .terms-choice {
  font-weight: 500;
}

.quote-submit {
  width: 100%;
}

.quote-result {
  display: grid;
  gap: 8px;
  min-height: 98px;
  padding: 16px;
  color: var(--ink-soft);
  background: #eef4f0;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.quote-result strong {
  color: var(--ink);
  font-size: 18px;
}

.quote-result textarea {
  width: 100%;
  min-height: 170px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  resize: vertical;
}

.fee-breakdown {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.fee-breakdown > strong {
  color: var(--ink);
  font-size: 15px;
}

.fee-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.fee-breakdown-grid div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  background: #ffffff;
}

.fee-breakdown-grid span {
  color: var(--text-muted);
  font-size: 12px;
}

.fee-breakdown-grid b {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
}

.fee-breakdown-grid small {
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.55;
}

.section-terms {
  background:
    linear-gradient(135deg, rgba(44, 62, 80, 0.08), rgba(198, 125, 91, 0.08)),
    var(--bg-primary);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.terms-grid article {
  min-height: 250px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.terms-grid i {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--warm);
}

.terms-grid h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.terms-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list p {
  padding: 0 20px 20px;
}

.final-cta {
  justify-content: space-between;
  padding: 54px 40px;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(255, 138, 29, 0.16) 0 12px, transparent 12px 26px),
    linear-gradient(90deg, rgba(47, 102, 118, 0.14), transparent 48%),
    var(--white);
  border-top: 1px solid rgba(255, 138, 29, 0.38);
}

.final-cta > div {
  width: min(760px, 100%);
}

.final-cta .eyebrow {
  color: var(--amber);
}

.final-cta h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 40px;
  color: var(--ink-soft);
  background: #f7f8f5;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 22px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.46);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: min(100% - 36px, 760px);
    padding-top: 118px;
  }

  h1 {
    font-size: 44px;
  }

  .notice-band,
  .shop-entry,
  .live-section,
  .section-order,
  .service-grid,
  .business-grid,
  .roadmap-grid,
  .member-tier-grid,
  .member-layout,
  .member-system-grid,
  .inspection-layout,
  .inspection-list,
  .inspection-standards,
  .shipping-layout,
  .tracking-layout,
  .supplier-tools,
  .supplier-grid,
  .terms-grid,
  .flow-list,
  .section-furniture,
  .section-quote {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .business-grid,
  .roadmap-grid,
  .inspection-standards,
  .member-tier-grid,
  .member-layout,
  .member-system-grid,
  .supplier-grid,
  .terms-grid,
  .flow-list {
    width: min(720px, 100%);
  }

  .status-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-furniture .furniture-copy,
  .shop-entry-copy,
  .shop-entry-card,
  .furniture-panel,
  .live-copy,
  .live-panel,
  .section-order .quote-copy,
  .order-form,
  .quote-copy,
  .quote-form {
    justify-self: center;
  }

  .section-furniture > *,
  .shop-entry-copy,
  .shop-entry-card,
  .live-copy,
  .live-panel,
  .section-order .quote-copy,
  .order-form,
  .quote-copy,
  .quote-form {
    width: min(720px, 100%);
  }

  .quote-copy,
  .section-order .quote-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(35, 43, 45, 0.86), rgba(47, 102, 118, 0.64) 58%, rgba(35, 43, 45, 0.58)),
      linear-gradient(90deg, rgba(35, 43, 45, 0.76), rgba(35, 43, 45, 0.16));
  }

  .hero-media {
    background-position: 57% center;
  }

  h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button,
  .shop-actions .button,
  .membership-actions .button,
  .order-result .button,
  .final-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .notice-item {
    min-height: auto;
    padding: 17px 20px;
  }

  .section {
    padding: 64px 18px;
  }

  .section-order {
    padding: 64px 18px;
  }

  .live-section {
    padding: 58px 18px;
  }

  .shop-entry {
    padding: 56px 18px;
  }

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

  .portal-header,
  .payment-flow a {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-tabs button {
    flex: 1 1 calc(50% - 8px);
  }

  .status-steps,
  .tracking-search,
  .member-fields,
  .supplier-tools,
  .supplier-grid,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .status-steps li {
    min-height: auto;
  }

  section[id] {
    scroll-margin-top: 116px;
  }

  .section-heading h2,
  .shop-entry-copy h2,
  .live-copy h2,
  .furniture-copy h2,
  .quote-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .service-card,
  .flow-list li {
    min-height: auto;
  }

  .pricing-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 3px;
  }

  .pricing-head {
    display: none;
  }

  .pricing-row + .pricing-row {
    border-top: 1px solid var(--line);
  }

  .pricing-row span:first-child {
    color: #151610;
    background: var(--amber);
    font-weight: 900;
  }

  .shipping-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .shipping-row {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 3px;
  }

  .shipping-head {
    display: none;
  }

  .shipping-row span:first-child {
    color: #151610;
    background: var(--amber);
    font-weight: 900;
  }

  .section-quote {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-form,
  .order-form {
    padding: 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .final-cta,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    display: grid;
  }
}

/* Nordic minimal commerce direction */
.site-header {
  padding: 18px 42px;
  border-bottom-color: rgba(250, 250, 248, 0.18);
  font-weight: 400;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 250, 248, 0.88);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06);
}

.brand-mark {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.58);
  border-radius: 2px;
  font-weight: 500;
}

.brand strong,
.site-nav {
  font-weight: 500;
}

.brand small,
.site-nav a {
  color: currentColor;
  opacity: 0.82;
}

.site-nav a::after {
  height: 1px;
  background: var(--warm);
}

.menu-toggle {
  border-radius: 2px;
}

.hero {
  min-height: 86vh;
}

.hero-media {
  filter: grayscale(0.1) saturate(0.82) brightness(0.96);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.58), rgba(26, 26, 26, 0.26) 48%, rgba(250, 250, 248, 0.06)),
    linear-gradient(180deg, rgba(26, 26, 26, 0.28), rgba(26, 26, 26, 0.05) 45%, rgba(26, 26, 26, 0.48));
}

.hero-content {
  padding-top: 154px;
}

.eyebrow,
.hero .eyebrow,
.section-inspection .eyebrow,
.final-cta .eyebrow {
  color: var(--warm);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.3vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.section-heading h2,
.furniture-copy h2,
.quote-copy h2,
.final-cta h2,
.live-copy h2,
.shop-entry-copy h2 {
  font-weight: 300;
  letter-spacing: 0;
}

.hero-copy,
.section-heading p,
.furniture-copy p,
.quote-copy p,
.live-copy p,
.shop-entry-copy p {
  color: var(--text-body);
  font-weight: 400;
}

.hero-copy {
  color: rgba(250, 250, 248, 0.9);
}

.button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  font-weight: 500;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(26, 26, 26, 0.08);
}

.button-primary,
.button-shop {
  color: var(--bg-primary);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover,
.button-shop:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button-live {
  color: var(--bg-primary);
  background: var(--warm);
  border-color: var(--warm);
}

.button-live:hover {
  background: #a7664a;
  border-color: #a7664a;
}

.button-outline,
.button-ghost {
  color: var(--accent);
  background: rgba(250, 250, 248, 0.78);
  border-color: rgba(44, 62, 80, 0.28);
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--bg-secondary);
}

.hero-facts {
  border-color: rgba(250, 250, 248, 0.28);
  background: rgba(250, 250, 248, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.hero-facts div {
  background: rgba(250, 250, 248, 0.12);
}

.hero-facts dt {
  font-weight: 300;
}

.notice-band,
.live-checks,
.shop-entry-card,
.pricing-row,
.shipping-row,
.spec-list {
  gap: 0;
  background: var(--line);
}

.notice-item,
.shop-entry-card div,
.live-checks span,
.pricing-row span,
.shipping-row span,
.spec-list div {
  background: var(--bg-card);
}

.notice-item,
.live-checks span {
  font-weight: 400;
}

.notice-item svg,
.check-list svg,
.live-checks svg,
.shop-entry-card svg,
.service-card svg,
.business-card svg {
  color: var(--warm);
}

.shop-entry,
.section-light,
.section-shipping {
  background: var(--bg-primary);
}

.live-section,
.section-muted,
.section-inspection,
.section-furniture {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-top: 0;
  border-image: none;
}

.shop-entry {
  border-bottom: 1px solid var(--line);
}

.shop-entry-card,
.live-panel,
.service-card,
.business-card,
.inspection-list article,
.inspection-note,
.inspection-standards article,
.flow-list li,
.furniture-panel img,
.spec-list,
.pricing-table,
.shipping-table,
.shipping-note,
.quote-form,
.quote-result,
.faq-list details {
  border: 0;
  border-radius: 2px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.service-card,
.business-card {
  background: var(--bg-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover,
.business-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
}

.service-card h3,
.business-card h3,
.inspection-list h3,
.inspection-note h3,
.flow-list h3,
.shipping-note h3 {
  font-weight: 400;
}

.service-card p,
.business-card p,
.flow-list p,
.faq-list p,
.inspection-list p,
.inspection-note li,
.inspection-standards ul,
.shipping-note p,
.shipping-note li,
.spec-list span,
.shop-entry-card span,
.hero-facts dd {
  color: var(--text-body);
}

.inspection-standards span,
.spec-list strong {
  color: var(--warm);
  font-weight: 500;
}

.inspection-list span,
.flow-list span {
  color: var(--warm);
  font-weight: 300;
}

.live-panel {
  padding: 16px;
}

.live-rail {
  color: var(--text-muted);
  font-weight: 500;
}

.video-shell {
  background: var(--bg-secondary);
  border: 0;
}

.live-placeholder svg,
.live-dot {
  color: var(--warm);
}

.live-dot {
  background: var(--warm);
  box-shadow: 0 0 0 8px rgba(198, 125, 91, 0.12);
}

.pricing-head span,
.shipping-head span,
.pricing-row span:first-child,
.shipping-row span:first-child {
  color: var(--bg-primary);
  background: var(--accent);
  font-weight: 400;
}

.section-quote {
  background:
    linear-gradient(135deg, rgba(198, 125, 91, 0.08), rgba(44, 62, 80, 0.05)),
    var(--bg-primary);
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.quote-result textarea {
  border-color: var(--line);
  border-radius: 2px;
  background: #ffffff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.08);
}

.quote-form label,
.quote-form legend {
  font-weight: 400;
}

.quote-form input[type="checkbox"] {
  accent-color: var(--accent);
}

.final-cta {
  color: var(--text-primary);
  background:
    linear-gradient(90deg, rgba(250, 250, 248, 0.92), rgba(250, 250, 248, 0.66)),
    url("assets/hero-crossborder-service.png") center / cover;
  border-top: 1px solid var(--line);
}

.site-footer {
  background: #f5f2ec;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    background: var(--bg-primary);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  }

  .hero-content {
    padding-top: 122px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-nav {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 14px;
    text-align: center;
  }

  .handoff-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-nav.is-open,
  .fee-breakdown-grid {
    grid-template-columns: 1fr;
  }
}
