/* Asset Exchange USA — site styles
   Tokens live in :root so color/type can be retuned in one place. */

:root {
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --gold-soft: #f0d78a;
  --gold-deep: #8a6e1f;
  --silver: #c5ccd3;
  --steel: #7a838c;
  --ink: #0b0a08;
  --char: #12100c;
  --panel: #1a1712;
  --panel-2: #221e18;
  --cream: #f3eee4;
  --parchment: #e8dfd0;
  --paper: #faf7f1;
  --text: #1a1714;
  --text-mute: #5c564c;
  --on-dark: #f3eee4;
  --on-dark-mute: #a89f90;
  --line: rgba(201, 162, 39, 0.32);
  --line-light: rgba(26, 23, 20, 0.12);
  --danger: #b42318;
  --ok: #3d7a4a;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Liberation Sans", system-ui, sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --wrap: 72rem;
  --gutter: clamp(1.1rem, 4vw, 2.25rem);
  --header-h: 4.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-weight: 700;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h2 { font-size: clamp(1.85rem, 4vw, 3rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.4rem; }

.lede {
  font-size: 1.125rem;
  color: var(--text-mute);
  max-width: 38rem;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(243, 238, 228, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-dark {
  background: var(--ink);
  color: var(--on-dark);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--panel); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--on-dark);
  min-width: 0;
}
.brand img {
  width: 2.55rem;
  height: 2.55rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.brand-usa {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav a {
  text-decoration: none;
  color: var(--on-dark-mute);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--on-dark); }
.nav .btn { min-height: 2.5rem; padding: 0.45rem 1rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--on-dark);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  margin: 5px auto;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--char);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(243,238,228,0.08); }
  .nav .btn { margin-top: 0.75rem; width: 100%; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201,162,39,0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(197,204,211,0.06), transparent 50%),
    var(--ink);
  color: var(--on-dark);
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(3rem, 7vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern-hex.svg");
  opacity: 0.07;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  margin: 0 0 1.1rem;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  display: block;
}
.hero-copy {
  font-size: 1.15rem;
  color: var(--on-dark-mute);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.path {
  display: block;
  text-decoration: none;
  padding: 1.15rem 1.15rem 1.2rem;
  background: var(--panel);
  border: 1px solid rgba(243,238,228,0.1);
  color: var(--on-dark);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.path:hover { border-color: var(--gold); transform: translateY(-2px); }
.path.featured {
  border-color: rgba(201,162,39,0.55);
  background:
    linear-gradient(160deg, rgba(201,162,39,0.16), transparent 55%),
    var(--panel-2);
}
.path .kicker { margin-bottom: 0.35rem; }
.path h2, .path h3 { font-size: 1.25rem; margin: 0 0 0.3rem; }
.path p { margin: 0; color: var(--on-dark-mute); font-size: 0.95rem; }

.hero-art {
  position: relative;
  min-height: 18rem;
}
.hero-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 0; max-width: 26rem; margin-inline: auto; }
  .paths { grid-template-columns: 1fr; }
}

/* Sections */
.section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section-head { margin-bottom: 2.25rem; max-width: 42rem; }
.section-dark { background: var(--char); color: var(--on-dark); }
.section-dark .lede { color: var(--on-dark-mute); }
.section-cream { background: var(--cream); color: var(--text); }
.section-paper { background: var(--paper); }

/* What we buy */
.metals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.metal {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--on-dark);
  border: 1px solid transparent;
}
.metal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}
.metal-gold {
  background: linear-gradient(155deg, #3a2e12 0%, #14110a 58%, #241c0c 100%);
  border-color: rgba(201,162,39,0.55);
}
.metal-silver {
  background: linear-gradient(155deg, #2a2e32 0%, #121416 58%, #1c2024 100%);
  border-color: rgba(197,204,211,0.4);
}
.metal .badge {
  position: relative;
  align-self: flex-start;
  margin-bottom: auto;
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  padding: 0.28rem 0.55rem;
}
.metal-silver .badge { background: var(--silver); }
.metal h3 { position: relative; font-size: 2rem; margin: 0 0 0.35rem; }
.metal p { position: relative; margin: 0; color: var(--on-dark-mute); max-width: 28rem; }
.metal:hover { outline: 1px solid var(--gold-bright); }
.metal:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.vehicles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.v-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  padding: 1.1rem 1rem 1.15rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 11.5rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.v-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.v-card img, .v-card svg { width: 4.75rem; height: 3.15rem; color: var(--text); }
.v-card h3 { font-size: 1.15rem; margin: 0; }
.v-card p { margin: 0; font-size: 0.9rem; color: var(--text-mute); }

@media (max-width: 900px) {
  .metals { grid-template-columns: 1fr; }
  .vehicles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .vehicles { grid-template-columns: 1fr; }
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: var(--panel);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}
.step h3 { color: var(--on-dark); }
.step p { margin: 0; color: var(--on-dark-mute); }
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
}

/* Why us */
.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-light);
  background: var(--paper);
}
.reason {
  padding: 1.5rem 1.4rem;
  border-bottom: 1px solid var(--line-light);
}
.reason:nth-child(odd) { border-right: 1px solid var(--line-light); }
.reason h3 {
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: 0;
  margin: 0 0 0.4rem;
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
}
.reason h3 span {
  color: var(--gold-deep);
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.reason p { margin: 0; color: var(--text-mute); }
@media (max-width: 640px) {
  .reasons { grid-template-columns: 1fr; }
  .reason:nth-child(odd) { border-right: 0; }
}

/* Quote */
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.quote-copy h2 { color: var(--on-dark); }
.quote-copy p { color: var(--on-dark-mute); }
.quote-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--on-dark-mute);
  font-size: 0.95rem;
}

.form {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.form-row { margin-bottom: 1rem; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.req { color: var(--gold-bright); }
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: var(--ink);
  color: var(--on-dark);
  border: 1px solid rgba(243,238,228,0.16);
  padding: 0.7rem 0.8rem;
  min-height: 2.85rem;
  border-radius: 0;
}
textarea { min-height: 7.5rem; resize: vertical; }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  padding: 0.4rem 0.4rem;
  border: 1px solid rgba(243,238,228,0.16);
  color: var(--on-dark-mute);
  font-size: 0.92rem;
  cursor: pointer;
}
.choice input:checked + span {
  border-color: var(--gold);
  color: var(--on-dark);
  background: rgba(201,162,39,0.12);
}
.choice input:focus-visible + span {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.field-error {
  color: #f5b7b1;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
  min-height: 0;
}
.form-block-title {
  margin: 0 0 0.35rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.form-block-note {
  margin: 0 0 1rem;
  color: var(--on-dark-mute);
  font-size: 0.92rem;
  max-width: 36rem;
}
.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select {
  border-color: #e08b84;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-success {
  display: none;
  padding: 2rem 0.5rem;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form.is-sent .form-fields { display: none; }
.form button[type="submit"]:disabled { opacity: 0.7; cursor: wait; }
.form-send-error {
  display: none;
  margin: 0.85rem 0 0;
  color: #e08b84;
  font-size: 0.92rem;
}
.form-send-error.is-visible { display: block; }
.form-success h3 { color: var(--gold-bright); font-size: 1.8rem; }
.form-success p { color: var(--on-dark-mute); max-width: 28rem; margin: 0 auto; }

@media (max-width: 800px) {
  .quote-grid { grid-template-columns: 1fr; }
  .form-row.two, .choices { grid-template-columns: 1fr; }
}

/* Detail pages */
.page-hero {
  background: var(--ink);
  color: var(--on-dark);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0 0 0.8rem; }
.page-hero p { color: var(--on-dark-mute); max-width: 36rem; margin: 0; }
@media (max-width: 800px) {
  .page-hero .wrap { grid-template-columns: 1fr; }
}

.list-plain { margin: 0; padding: 0; list-style: none; }
.list-plain li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
}
.list-plain strong {
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold-deep);
}
@media (max-width: 560px) {
  .list-plain li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* Footer */
.site-footer {
  background: #080706;
  color: var(--on-dark-mute);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h2 {
  font-size: 1.15rem;
  color: var(--on-dark);
  margin: 0 0 0.6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.3rem 0; }
.site-footer a { text-decoration: none; color: var(--on-dark-mute); }
.site-footer a:hover { color: var(--gold); }
.legal {
  border-top: 1px solid rgba(243,238,228,0.08);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Misc */
.inline-gold { color: var(--gold); }
hr.gold-rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0 0 1.5rem;
}

.form-row.two > .form-row { margin-bottom: 0; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success:focus { outline: none; }
@media print {
  .site-header, .nav-toggle, .hero-actions, .form, .btn { }
  .site-header { position: static; }
}

/* —— Photography & warmer lot (added) —— */
.hero::before { opacity: 0.035; }

.hero.hero-photo {
  min-height: min(38rem, 92vh);
  padding: clamp(3rem, 8vw, 6.25rem) 0 clamp(3.5rem, 8vw, 6.25rem);
  background: var(--ink);
}
.hero.hero-photo::before { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,10,8,0.88) 0%, rgba(11,10,8,0.74) 38%, rgba(11,10,8,0.28) 68%, rgba(11,10,8,0.42) 100%),
    linear-gradient(180deg, rgba(11,10,8,0.22) 0%, transparent 28%, rgba(11,10,8,0.5) 100%);
}
.hero.hero-photo .hero-grid {
  grid-template-columns: minmax(0, 38rem) 1fr;
  align-items: center;
}
.hero.hero-photo .hero-content { position: relative; z-index: 1; }
.hero.hero-photo .hero-copy { color: #d9d0c2; }

@media (max-width: 860px) {
  .hero.hero-photo { min-height: 0; }
  .hero.hero-photo .hero-grid { grid-template-columns: 1fr; }
  .hero.hero-photo .paths { grid-template-columns: 1fr; }
  .hero-bg img { object-position: 70% 40%; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(11,10,8,0.55) 0%, rgba(11,10,8,0.82) 42%, rgba(11,10,8,0.92) 100%);
  }
}

.metal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0.08) 10%, rgba(11,10,8,0.78) 72%);
  pointer-events: none;
}
.metal img { opacity: 1; }
.metal .badge,
.metal h3,
.metal p { z-index: 1; }

.vehicles { grid-template-columns: repeat(6, 1fr); }
.v-card {
  padding: 0 0 1.05rem;
  overflow: hidden;
  min-height: 0;
  gap: 0;
}
.v-card img.v-photo,
.v-card .v-photo {
  width: 100%;
  height: 7.25rem;
  object-fit: cover;
  color: inherit;
}
.v-card h3 { margin: 0.75rem 0.95rem 0.2rem; }
.v-card p { margin: 0 0.95rem; }
@media (max-width: 1100px) {
  .vehicles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .vehicles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .vehicles { grid-template-columns: 1fr; }
}

/* Vehicles we buy — photo lot */
.lot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.lot-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  color: var(--on-dark);
}
.lot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.lot-card.tall img { aspect-ratio: 3 / 4; }
.lot-card.wide { grid-column: span 2; }
.lot-card.wide img { aspect-ratio: 16 / 9; min-height: 14rem; }
.lot-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 0.9rem 0.8rem;
  background: linear-gradient(transparent, rgba(11,10,8,0.88));
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--gold-soft);
}
.lot-card:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .lot-card:hover img { transform: none; }
}
@media (max-width: 900px) {
  .lot { grid-template-columns: 1fr 1fr; }
  .lot-card.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .lot { grid-template-columns: 1fr; }
  .lot-card.wide { grid-column: auto; }
  .lot-card.wide img { aspect-ratio: 4 / 3; min-height: 0; }
}

.photo-credits {
  margin: 1.15rem 0 0;
  font-size: 0.82rem;
  color: var(--text-mute);
  max-width: 46rem;
}
.section-dark .photo-credits { color: var(--on-dark-mute); }

.page-hero.page-hero-photo {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(201,162,39,0.12), transparent 55%),
    var(--ink);
}
.page-hero-media {
  min-height: 18rem;
  overflow: hidden;
  background: var(--panel);
  align-self: stretch;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  display: block;
}

.photo-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.photo-row figure {
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}
.photo-row img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.photo-row figcaption {
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold-deep);
  padding: 0.65rem 0.15rem 0.15rem;
}
@media (max-width: 800px) {
  .photo-row { grid-template-columns: 1fr; }
  .photo-row img { height: 14rem; }
}
#lot { scroll-margin-top: calc(var(--header-h) + 0.75rem); }
.lot-card { display: flex; flex-direction: column; }
.lot-card img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
}


/* We-come-to-you promises under the home hero */
.promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}
.promises li {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-soft);
}
.promises li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  background: var(--gold);
  vertical-align: 0.12em;
}

.contact-phone,
.contact-email {
  margin: 1.25rem 0 0;
}
.contact-phone a,
.contact-email a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  font-weight: 600;
}
.contact-phone a:hover,
.contact-email a:hover { color: var(--gold-bright); }
.contact-email a { font-size: clamp(1.05rem, 2.2vw, 1.35rem); }

.contact-meta {
  margin-top: 2rem;
  color: var(--text-mute);
}
.contact-meta p { margin: 0.35rem 0 0; }

/* Header phone, cash-on-spot band, seller stories */
.header-call {
  display: flex; flex-direction: column; justify-content: center;
  text-decoration: none; color: var(--gold-bright); line-height: 1.1;
  margin-left: auto; margin-right: 0.75rem; text-align: right; flex-shrink: 0;
}
.header-call-label {
  font-family: var(--font-label); letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.68rem; color: var(--gold); font-weight: 600;
}
.header-call strong {
  font-family: var(--font-display); font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 700; color: var(--gold-bright); letter-spacing: 0.01em;
}
.header-call:hover strong { color: var(--gold-soft); }
.contact-phone a strong { font-weight: 800; }
.agent-note { margin-top: 0.6rem; color: var(--on-dark-mute); max-width: 32rem; }

.cash-spot {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
}
.cash-spot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  width: min(var(--wrap), 100%);
  padding: 0;
}
.cash-spot-media {
  min-height: 22rem;
  overflow: hidden;
  background: var(--panel);
}
.cash-spot-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
}
.cash-spot-copy {
  padding: clamp(1.75rem, 4vw, 3rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cash-spot-copy h2 { color: var(--gold-bright); }
.cash-spot-copy > p { color: var(--cream); max-width: 32rem; }
.cash-spot-copy .btn { align-self: flex-start; margin: 1.25rem 0 0.85rem; }
.cash-spot .photo-credits { color: var(--on-dark-mute); margin-top: 0.4rem; }
@media (max-width: 800px) {
  .cash-spot-grid { grid-template-columns: 1fr; }
  .cash-spot-media { order: -1; }
}

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stories-one {
  grid-template-columns: minmax(0, 24rem);
}
.story-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  overflow: hidden;
}
.story-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.story-card h3,
.story-card p {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
.story-card h3 { padding-top: 1rem; margin-bottom: 0.35rem; }
.story-card p { margin: 0 0 0.65rem; color: var(--text-mute); padding-bottom: 0; }
.story-closer {
  font-style: italic;
  color: var(--gold-deep);
  padding-bottom: 1.15rem;
}
.section-cream .story-card { background: var(--paper); }
@media (max-width: 800px) {
  .stories { grid-template-columns: 1fr; }
}
.page-hero .hero-actions { margin-bottom: 0; }

/* Quote form photo picker (injected once from js/main.js) */
.quote-photos {
  position: relative;
}
.quote-photos .form-block-note {
  margin-bottom: 0.7rem;
}
.quote-photos-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.quote-photos input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quote-photos-btn {
  min-height: 2.85rem;
  padding: 0.55rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  color: var(--on-dark);
  border: 1px dashed rgba(201, 162, 39, 0.55);
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.quote-photos-btn:hover {
  border-color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.16);
}
.quote-photos-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.quote-photos-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.quote-photos.has-error .quote-photos-btn {
  border-color: #e08b84;
}
.quote-photos-count {
  color: var(--on-dark-mute);
  font-size: 0.88rem;
}
.quote-photos-thumbs {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr));
  gap: 0.55rem;
}
.quote-photos-thumbs:empty {
  display: none;
}
.quote-photos-thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  background: var(--ink);
  border: 1px solid rgba(243, 238, 228, 0.16);
  overflow: hidden;
}
.quote-photos-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-photos-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.45rem;
  color: var(--on-dark-mute);
  font-size: 0.72rem;
  text-align: center;
  word-break: break-word;
}
.quote-photos-remove {
  position: absolute;
  top: 0.28rem;
  right: 0.28rem;
  width: 1.65rem;
  height: 1.65rem;
  border: 0;
  background: rgba(11, 10, 8, 0.82);
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.quote-photos-remove:hover {
  background: var(--danger);
  color: #fff;
}
.quote-photos-remove:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 1px;
}
