/* High Caliber Estate Sales — brand stylesheet
   Palette: ink #1A1A1A · emerald #0F6E56 · highlight #1D9E75 · gold #C2A36B
   Type: Space Grotesk (display) · Inter (body) */

:root {
  --ink: #1A1A1A;
  --ink-soft: #33332F;
  --brand: #0F6E56;
  --brand-dark: #0A4A3A;
  --brand-light: #1D9E75;
  --gold: #C2A36B;
  --gold-dark: #9A7B45;
  --paper: #F7F6F2;
  --surface: #FFFFFF;
  --line: #E5E3DC;
  --muted: #6F6F6A;
  --dark: #141716;
  --dark-2: #1C201E;

  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  --container: 1140px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(20, 23, 22, 0.06), 0 8px 28px rgba(20, 23, 22, 0.06);
  --shadow-lg: 0 18px 50px rgba(20, 23, 22, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
img, svg { max-width: 100%; display: block; }
ul { margin: 0 0 1.1em; padding-left: 1.1em; }
li { margin-bottom: 0.4em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--dark); color: #EDEDEA; }
.section--ink h2, .section--ink h3 { color: #fff; }
.center { text-align: center; }
.measure { max-width: 680px; margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brand);
  margin: 0 0 14px;
}
.section--ink .eyebrow { color: var(--brand-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 500; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; transition: all .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #2A2308; }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.section--ink .btn-ghost, .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section--ink .btn-ghost:hover, .hero .btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.nav__logo img { height: 52px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink-soft); font-family: var(--display); font-weight: 500; font-size: 0.9rem; white-space: nowrap; padding: 7px 11px; border-radius: 8px; transition: background .15s ease, color .15s ease; }
.nav__links a:hover { color: var(--brand); background: rgba(15,110,86,.09); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 11px 17px; font-size: 0.92rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

@media (max-width: 1000px) {
  .nav__links, .nav__cta .btn-ghost { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow);
  }
}

/* Hero */
.hero { background: var(--dark); color: #E9EBEA; position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 92px 0 84px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: var(--brand-light); }
.hero__lead { font-size: 1.2rem; color: #C7CCC9; max-width: 33ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__note { font-size: 0.92rem; color: #99A09C; }
.hero__art { display: flex; justify-content: center; }
.hero__art svg, .hero__art img { width: 100%; max-width: 360px; height: auto; }
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; }
  .hero__art { order: -1; max-width: 220px; margin: 0 auto; }
}

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-family: var(--display); font-size: 2.3rem; font-weight: 600; color: var(--brand); line-height: 1; }
.section--ink .stat__num { color: var(--brand-light); }
.stat__label { font-size: 0.92rem; color: var(--muted); margin-top: 8px; }
.section--ink .stat__label { color: #A9AFAB; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* Section heading block */
.s-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.s-head p { color: var(--muted); font-size: 1.1rem; margin-bottom: 0; }

/* Cards grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: all .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #d8d6cd; }
.card__icon { width: 46px; height: 46px; color: var(--brand); margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 32px; } .split--reverse .split__media { order: 0; } }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-soft); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--brand); margin-top: 2px; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 14px; }
.step__n {
  font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: #fff;
  background: var(--brand); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; }
.price-card--featured { border: 2px solid var(--brand); box-shadow: var(--shadow); position: relative; }
.price-badge { position: absolute; top: -13px; left: 28px; background: var(--brand); color: #fff; font-family: var(--display); font-size: 0.76rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.price-card h3 { margin-bottom: 4px; }
.price-card .price { font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; margin: 14px 0 4px; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-card .note { color: var(--muted); font-size: 0.92rem; }

/* Listing cards (marketplace) */
.listing { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.listing__img { aspect-ratio: 4 / 3; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--muted); position: relative; }
.listing__badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #2A2308; font-family: var(--display); font-size: 0.72rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; }
.listing__body { padding: 18px 20px; }
.listing__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.listing__body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }

/* Testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.quote p { font-size: 1.05rem; color: var(--ink-soft); font-style: italic; }
.quote .who { font-family: var(--display); font-weight: 500; font-style: normal; color: var(--ink); margin-top: 14px; font-size: 0.95rem; }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { font-family: var(--display); font-weight: 500; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brand); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin: 14px 0 0; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D2EAE2; font-size: 1.12rem; max-width: 520px; margin: 0 auto 26px; }
@media (max-width: 560px) { .cta-band { padding: 38px 24px; } }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 500; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,110,86,.12); }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info { background: var(--paper); border-radius: var(--radius-lg); padding: 30px; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 3px; }
.contact-info a { color: var(--ink); }

/* Trust badges */
.badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: 30px; padding: 10px 18px; font-family: var(--display); font-weight: 500; font-size: 0.92rem;
}
.badge svg { width: 18px; height: 18px; color: var(--brand); }

/* Footer */
.footer { background: var(--dark); color: #B9BEBB; padding: 64px 0 30px; font-size: 0.95rem; }
.footer a { color: #B9BEBB; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__logo img { height: 56px; margin-bottom: 16px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: #8A908C; }

.pill { display:inline-block; background: rgba(15,110,86,.1); color: var(--brand-dark); font-family: var(--display); font-weight:500; font-size:.8rem; padding:5px 12px; border-radius:20px; }

/* ---- Location pages + components ---- */
.footer__h { color:#fff; font-size:.92rem; text-transform:uppercase; letter-spacing:.12em; margin:0 0 16px; font-weight:500; font-family:var(--display); }
.crumbs { font-size:.85rem; padding:14px 0; border-bottom:1px solid var(--line); }
.crumbs a { color:var(--muted); }
.crumbs a:hover { color:var(--brand); }
.crumbs span { color:var(--muted); margin:0 4px; }
.crumbs [aria-current="page"] { color:var(--ink); }
.hero--compact .hero__inner { padding:60px 0 52px; }
.link-grid { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); gap:10px; }
.link-grid a { display:flex; align-items:center; padding:12px 16px; border:1px solid var(--line); border-radius:var(--radius); color:var(--ink-soft); background:var(--surface); transition:border-color .15s ease, color .15s ease, transform .15s ease; min-height:46px; }
.link-grid a:hover { border-color:var(--brand); color:var(--brand); transform:translateY(-1px); }
.card--link { text-decoration:none; color:inherit; display:block; }
.card--link h3 { color:var(--ink); transition:color .15s ease; }
.card--link:hover h3 { color:var(--brand); }

/* ---- Mobile + accessibility polish ---- */
:focus-visible { outline:2px solid var(--brand); outline-offset:2px; border-radius:2px; }
.btn { min-height:44px; }
.nav__toggle { min-width:44px; min-height:44px; }
.nav__links a { display:inline-flex; align-items:center; min-height:40px; }
.faq summary { min-height:44px; align-items:center; }
@media (max-width:1000px){
  .nav--open .nav__links a { display:flex; min-height:48px; padding:10px 12px; }
}
@media (max-width:480px){
  body { font-size:16px; }
  h1 { font-size:2rem; }
  .section { padding:54px 0; }
  .cta-band { padding:36px 22px; }
  .btn { white-space:normal; max-width:100%; text-align:center; }
}
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* Two-channel hybrid visual (home "difference" section) */
.channels { display:grid; grid-template-columns:1fr 1fr; gap:12px; max-width:400px; margin:0 auto; }
.channel { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px 18px; text-align:center; transition:transform .18s ease, box-shadow .18s ease; }
.channel:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.channel__icon { width:40px; height:40px; color:var(--brand); margin:0 auto 12px; }
.channel h3 { font-size:1.05rem; margin:0 0 6px; }
.channel p { color:var(--muted); font-size:.92rem; margin:0; line-height:1.5; }
.channel__sum { grid-column:1 / -1; text-align:center; background:rgba(15,110,86,.07); border:1px solid var(--line); border-radius:var(--radius); padding:13px 16px; font-size:.95rem; color:var(--ink-soft); }
.channel__sum strong { color:var(--brand-dark); }

/* ---- Motion & polish ---- */
@keyframes hc-fade-up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes hc-pop { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:none; } }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }

.hero .eyebrow { animation:hc-fade-up .6s .05s both; }
.hero h1 { animation:hc-fade-up .7s .12s both; }
.hero__lead { animation:hc-fade-up .7s .22s both; }
.hero__actions { animation:hc-fade-up .7s .32s both; }
.hero__note { animation:hc-fade-up .7s .42s both; }
.hero__art { animation:hc-pop .9s .2s both; }

.site-header { transition:box-shadow .25s ease; }
.site-header.scrolled { box-shadow:0 6px 24px rgba(20,23,22,.09); }

/* nav links use a pill hover background (see .nav__links a) instead of an underline */
.btn-primary:hover, .btn-gold:hover { box-shadow:0 10px 22px rgba(20,23,22,.16); }

/* Live eBay listing card */
a.listing { text-decoration:none; color:inherit; transition:transform .18s ease, box-shadow .18s ease; }
a.listing:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.listing__badge--live { background:var(--brand); color:#fff; }
.listing__price { font-family:var(--display); font-weight:700; color:var(--brand); font-size:1.05rem; margin:0 0 6px; }
.listing__img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

/* Vehicle page — video wall + tiered pricing */
.listing__img--16x9 { aspect-ratio:16 / 9; background:#000; }
.listing__badge--yt { background:#FF0000; color:#fff; }
.vid-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.vid-play svg { width:54px; height:54px; filter:drop-shadow(0 2px 8px rgba(0,0,0,.5)); transition:transform .18s ease; }
a.listing:hover .vid-play svg { transform:scale(1.08); }
.tiers { list-style:none; padding:0; margin:0; }
.tiers li { display:flex; justify-content:space-between; align-items:baseline; gap:18px; padding:15px 0; border-bottom:1px solid var(--line); }
.tiers li:last-child { border-bottom:0; }
.tiers .t-rate { font-family:var(--display); font-weight:600; color:var(--brand); font-size:1.15rem; white-space:nowrap; }
.tiers .t-rate small { font-size:.8rem; color:var(--muted); font-weight:400; }
