/* HomeRight design tokens + base */

:root {
  --bg: #FAF7F0;
  --bg-deep: #F2EDE1;
  --surface: #FFFFFF;
  --surface-2: #FBF8F1;
  --ink: #16201F;
  --ink-2: #1F2933;
  --muted: #6B6258;
  --muted-2: #8B8377;
  --primary: #0F6B5F;
  --primary-dark: #084C44;
  --primary-tint: #E3EFEC;
  --accent: #C58A2A;
  --accent-tint: #F4E9D2;
  --border: #E7E1D8;
  --border-strong: #D8D0C2;
  --danger: #B4533C;
  --shadow-sm: 0 1px 0 rgba(22,32,31,0.04), 0 1px 2px rgba(22,32,31,0.04);
  --shadow-md: 0 2px 6px rgba(22,32,31,0.05), 0 12px 32px -8px rgba(22,32,31,0.08);
  --shadow-lg: 0 12px 40px -8px rgba(22,32,31,0.12), 0 2px 8px rgba(22,32,31,0.04);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Newsreader", "Source Serif 4", Georgia, serif;
  --mono: "JetBrains Mono", "Geist Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

/* Page wrapper for max width */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,240,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: opacity .15s ease;
}
.logo:hover { opacity: 0.86; }
.logo-home {
  font-weight: 500;
  color: var(--ink);
}
.logo-right {
  font-weight: 600;
  color: var(--primary);
  position: relative;
}
.logo-right::after {
  content: "";
  position: absolute;
  left: 0;
  right: -1px;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.55;
}
.logo--footer {
  font-size: 24px;
}
.logo--footer .logo-right::after {
  bottom: -4px;
  height: 2.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.nav-links a { color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #2BA46B;
  box-shadow: 0 0 0 3px rgba(43,164,107,0.18);
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #FAF7F0;
  border: 1px solid var(--primary-dark);
  box-shadow: 0 1px 0 rgba(8,76,68,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-deep); }
.btn-ghost {
  color: var(--ink);
  padding: 8px 12px;
}
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-sm { padding: 8px 12px; font-size: 13px; border-radius: 7px; }

.arrow {
  display: inline-block;
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- HERO ---------- */
.hero {
  padding: 56px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-pill .seal {
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #FAF7F0;
}
.trust-pill .seal svg { width: 10px; height: 10px; }

h1.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 18px;
  text-wrap: balance;
}
h1.hero-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-trust-row .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-row .num {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-trust-row .lbl {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------- FEATURED CARD ---------- */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.fc-image {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.fc-image::after,
.hc-image::after,
.mini-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,32,31,0.5) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-image .ph-label,
.hc-image .ph-label,
.mini-img .ph-label,
.fc-image .fc-badge,
.fc-image .fc-image-corner,
.hc-image .hc-badge,
.hc-image .hc-score {
  z-index: 2;
}
.fc-image .ph-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: rgba(22,32,31,0.45);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.fc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.fc-badge .b-dot {
  width: 14px; height: 14px;
  background: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #FAF7F0;
}
.fc-badge .b-dot svg { width: 8px; height: 8px; }

.fc-score {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(22,32,31,0.78);
  color: #FAF7F0;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}
.fc-score b { color: #FAF7F0; font-weight: 600; }

.fc-image-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-width: calc(100% - 28px);
}

.fc-image-corner .hero-stamp {
  position: static;
  transform: rotate(3deg);
}

.fc-image-corner .fc-score {
  position: static;
}

.fc-body { padding: 20px 22px; }
.fc-locality {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.fc-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.15;
}
.fc-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fc-meta .sep { color: var(--border-strong); }
.fc-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.fc-price {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fc-fair {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}
.fc-fair b { color: var(--primary); font-weight: 600; }

.fc-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.fc-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.fc-tag .check {
  width: 16px; height: 16px;
  background: var(--primary-tint);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.fc-tag .check svg { width: 9px; height: 9px; }

.fc-cert-strip {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.5;
}
.fc-cert-strip b {
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.fc-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fc-actions .btn-primary { flex: 1; justify-content: center; }
.fc-report-link {
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px dotted var(--border-strong);
  padding-bottom: 1px;
}
.fc-report-link:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* Hero side decoration */
.hero-side {
  position: relative;
}
.hero-stamp {
  background: var(--accent);
  color: #FAF7F0;
  padding: 8px 11px;
  border-radius: 6px;
  transform: rotate(3deg);
  box-shadow: var(--shadow-md);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}
.hero-stamp b { display: block; font-weight: 700; font-size: 11px; }

/* ---------- SECTION CHROME ---------- */
section { padding: 88px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--primary);
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 720px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--primary); font-weight: 400; }
.section-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 48px;
}

/* ---------- PROBLEM SECTION ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 920px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--surface);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 240px;
}
.problem-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.problem-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.problem-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.problem-strike {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 1.5px;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- WHY RESALE ---------- */
#why-resale {
  padding-bottom: 48px;
}

.resale-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.resale-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.resale-col--warn {
  background: var(--surface-2);
}

.resale-col--featured {
  background: linear-gradient(180deg, var(--primary-tint) 0%, #EAF4F1 100%);
  border-color: rgba(15, 107, 95, 0.28);
  box-shadow: var(--shadow-md);
}

.resale-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: var(--primary);
  color: #FAF7F0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.resale-badge svg {
  width: 10px;
  height: 10px;
}

.resale-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.resale-col--featured .resale-label {
  color: var(--primary-dark);
  padding-right: 96px;
}

.resale-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resale-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}

.resale-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}

.resale-col--warn .resale-list li::before {
  background: var(--accent);
}

.resale-col--featured .resale-list li::before {
  background: var(--primary);
}

.resale-list li.is-caveat {
  color: var(--danger);
  font-weight: 500;
}

.resale-list li.is-caveat::before {
  background: var(--danger);
}

.resale-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.resale-benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resale-benefit-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.resale-benefit-lbl {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 920px) {
  .resale-compare {
    grid-template-columns: 1fr;
  }

  .resale-col--featured {
    order: -1;
  }

  .resale-col--featured .resale-label {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .resale-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .resale-benefits {
    grid-template-columns: 1fr;
  }
}

/* ---------- INVENTORY ---------- */
.inv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.inv-header .left { flex: 1; }
.inv-count {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.inv-count b { color: var(--ink); font-weight: 600; }

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  color: var(--ink-2);
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chip:hover { border-color: var(--border-strong); }
.chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chip .count {
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.6;
}

@media (max-width: 720px) {
  #inventory > .wrap {
    overflow-x: clip;
  }

  .inv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .inv-header .section-sub {
    margin-bottom: 0;
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.home-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .15s ease;
}
.home-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.hc-image {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.hc-image .ph-grad { position: absolute; inset: 0; }
.hc-image .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.07) 14px 28px);
}
.hc-image .ph-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.92);
  background: rgba(22,32,31,0.5);
  padding: 4px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.hc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--surface);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}
.hc-badge .bdot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.hc-badge.warn { color: #8C5318; }
.hc-badge.warn .bdot { background: var(--accent); }
.hc-badge.docs { color: var(--primary-dark); }
.hc-badge.docs .bdot { background: var(--primary); }

.hc-score {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22,32,31,0.8);
  color: #FAF7F0;
  padding: 5px 9px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.hc-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hc-locality {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hc-society {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.hc-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.hc-priceblock {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hc-price {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hc-fair {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}
.hc-fair span { color: var(--primary); }

.hc-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  padding: 12px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.hc-tags .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-2);
}
.hc-tags .row .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.hc-tags .row .v { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.hc-tags .row .v .dot { width: 6px; height: 6px; border-radius: 50%; }

.hc-cert-strip {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--bg-deep);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.hc-cert-strip b { color: var(--primary-dark); font-weight: 700; }

.hc-availability {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hc-availability .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(197,138,42, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(197,138,42, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(197,138,42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197,138,42, 0); }
}

.hc-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hc-actions .btn-primary { flex: 1; justify-content: center; }

/* ---------- 5 PROMISES ---------- */
.promises-section {
  background: var(--ink);
  color: #F2EDE1;
  border-radius: var(--radius-xl);
  margin: 0 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .promises-section { margin: 0 16px; padding: 56px 24px; border-radius: var(--radius-lg); }
}
.promises-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(15,107,95,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(197,138,42,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.promises-section .eyebrow {
  color: var(--accent);
}
.promises-section .eyebrow::before { background: var(--accent); }
.promises-section .section-title {
  color: #F2EDE1;
  max-width: 820px;
}
.promises-section .section-title em { color: #E5C68A; }
.promises-section .section-sub {
  color: rgba(242,237,225,0.65);
  max-width: 640px;
}
.promises-list {
  margin-top: 56px;
  position: relative;
}
.promise-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(242,237,225,0.12);
  align-items: start;
}
.promise-row:last-child { border-bottom: 1px solid rgba(242,237,225,0.12); }
@media (max-width: 760px) {
  .promise-row { grid-template-columns: 1fr; gap: 16px; }
}
.promise-num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.promise-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #F2EDE1;
  margin: 0 0 10px;
}
.promise-line {
  font-size: 15px;
  color: rgba(242,237,225,0.7);
  line-height: 1.5;
  margin: 0;
}
.promise-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.promise-check li {
  list-style: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: rgba(242,237,225,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.promise-check li::before {
  content: "";
  width: 11px; height: 11px;
  background: var(--primary);
  border-radius: 3px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path fill='%23F2EDE1' d='M3.8 7L1.5 4.7l.8-.8L3.8 5.4l3.9-3.9.8.8z'/></svg>");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}

.promise-row.featured {
  background: rgba(15,107,95,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  border-top: 1px solid rgba(15,107,95,0.3);
  margin: 4px 0;
}
.promise-warranty {
  background: rgba(197,138,42,0.12);
  border: 1px dashed rgba(197,138,42,0.5);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: #E5C68A;
  letter-spacing: 0.01em;
}
.promise-fair-example {
  background: rgba(242,237,225,0.05);
  border: 1px solid rgba(242,237,225,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(242,237,225,0.75);
  margin-bottom: 12px;
}
.promise-fair-example b {
  color: #E5C68A;
  font-weight: 600;
  display: block;
  font-size: 15px;
  margin-top: 4px;
}

/* ---------- INSPECTION REPORT ---------- */
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .report-grid { grid-template-columns: 1fr; } }

.report-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
}
.report-mock::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px dashed var(--border-strong);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
  z-index: -1;
}
.rm-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rm-head .doc {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.rm-head .doc b { color: var(--primary-dark); font-weight: 700; }
.rm-head .ref {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.rm-title {
  padding: 20px 22px 14px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.rm-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.rm-meta-row > div {
  padding: 10px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.rm-meta-row > div:nth-child(odd) { border-right: 1px solid var(--border); }
.rm-meta-row .v { color: var(--ink-2); font-weight: 500; }

.rm-section {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 16px;
  align-items: center;
}
.rm-section:last-child { border-bottom: none; }
.rm-cat {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.rm-note {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
  font-family: var(--sans);
}
.rm-status {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
}
.rm-status.ok { color: #2BA46B; }
.rm-status.flag { color: var(--accent); }
.rm-status.note { color: var(--muted); }
.rm-foot {
  padding: 16px 22px;
  background: var(--bg-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.rm-foot .stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.rm-foot .stamp .s {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #FAF7F0;
  font-size: 8px;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding-top: 36px;
}
.step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 36px;
  right: -24px;
  height: 1px;
  background-image: linear-gradient(to right, var(--border-strong) 50%, transparent 50%);
  background-size: 8px 1px;
}
.step:last-child::before { display: none; }
@media (max-width: 800px) { .step::before { display: none; } }
.step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-dark);
}
.step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 16px 0 8px;
  color: var(--ink);
}
.step p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 320px;
}

/* ---------- SELLER + TRUST + FINAL ---------- */
.seller {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .seller { grid-template-columns: 1fr; padding: 40px 28px; }
}
.seller h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  color: var(--ink);
}
.seller p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.55;
}
.seller-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #A38C68 0%, #846C49 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.seller-img .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.06) 14px 28px);
}
.seller-img .ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  background: rgba(22,32,31,0.45);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 720px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }
.trust-stat {
  background: var(--surface);
  padding: 32px 24px;
}
.trust-stat .num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.trust-stat .lbl {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
}

.final-cta {
  background: var(--ink);
  color: #F2EDE1;
  border-radius: var(--radius-xl);
  margin: 0 32px;
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .final-cta { margin: 0 16px; padding: 64px 24px; }
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(197,138,42,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
  color: #F2EDE1;
}
.final-cta h2 em { color: #E5C68A; font-style: italic; }
.final-cta p {
  font-size: 17px;
  color: rgba(242,237,225,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.final-cta .cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.final-cta .btn-secondary {
  background: transparent;
  color: #F2EDE1;
  border-color: rgba(242,237,225,0.3);
}
.final-cta .btn-secondary:hover { background: rgba(242,237,225,0.08); }

/* ---------- FOOTER ---------- */
footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-grid li {
  font-size: 14px;
  color: var(--ink-2);
}
.foot-grid li:hover { color: var(--primary); cursor: pointer; }
.foot-tagline {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 320px;
  margin: 16px 0 0;
}
.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ---------- MODAL ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22,32,31,0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: scaleIn 0.25s ease;
}
@keyframes scaleIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 760px) { .modal { grid-template-columns: 1fr; } }

.modal-side {
  background: var(--bg-deep);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border);
}
@media (max-width: 760px) { .modal-side { border-right: none; border-bottom: 1px solid var(--border); } }
.modal-side .mini-img {
  aspect-ratio: 16/11;
  border-radius: 8px;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.modal-side .mini-img .ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,0.07) 12px 24px);
}
.modal-side .mini-img .ph-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.9);
  background: rgba(22,32,31,0.5);
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.modal-side h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}
.modal-side .home-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.modal-side .home-meta {
  font-size: 13px;
  color: var(--muted);
}
.modal-side .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.modal-side .price-row .p {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
}
.modal-side .price-row .s {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--primary);
}
.modal-side .quick-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.modal-side .quick-tags span { display: flex; gap: 6px; align-items: center; }
.modal-side .quick-tags span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}

.modal-main {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.modal-main h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.15;
}
.modal-main .sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 22px;
}
.modal-main .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-deep);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.modal-main .close:hover { background: var(--border); }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select {
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,107,95,0.12);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.slot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.slot {
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: 13px;
  background: var(--surface);
  color: var(--ink-2);
  transition: all .15s ease;
}
.slot:hover { border-color: var(--primary); color: var(--primary); }
.slot.active {
  background: var(--primary);
  color: #FAF7F0;
  border-color: var(--primary-dark);
}

.modal-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.modal-foot .helper {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.modal-foot .helper .wa {
  width: 16px; height: 16px;
  background: #25D366;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.modal-foot .submit { width: 100%; justify-content: center; }

.success-state {
  text-align: center;
  padding: 40px 20px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.success-state .check-big {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.success-state h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.success-state p {
  font-size: 15px;
  color: var(--muted);
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}
.success-state .ref-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 8px 14px;
  background: var(--bg-deep);
  border-radius: 6px;
}

/* ---------- HORIZONTAL DECOR ---------- */
.divider-mono {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: center;
  padding: 32px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.divider-mono::before, .divider-mono::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
}
