/* ── Sell Hero ───────────────────────────────────────────────── */
.sell-hero {
  position: relative;
  background: var(--dark);
  padding: clamp(76px, 12vw, 132px) 24px;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid var(--rust);
}
/* Photo layer — swap assets/sell-hero.jpg for a dedicated hero shot */
.sell-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/sell-hero.jpg') center 38% / cover no-repeat;
}
/* Darkening scrim for legibility */
.sell-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.28) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.7) 100%);
}
/* Darker scrim — estate page only */
/* Estate page uses its own dedicated hero photo — do not share sell-hero.jpg */
.estate-hero::before {
  background: url('../assets/estate-hero.jpg') center 38% / cover no-repeat;
}
.estate-hero::after {
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.5) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.9) 100%);
}
.sell-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
  margin-bottom: 18px;
}
.sell-hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.32;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
/* Keep the accent phrase on a single band above phone widths */
@media (min-width: 600px) {
  .sell-hero h1 { white-space: nowrap; }
}
/* Accent line: reversed text on a rust "highlighter" band */
.sell-hero h1 span {
  color: var(--white);
  background: var(--rust);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.04em 0.3em;
  border-radius: 2px;
  text-shadow: none;
}
.sell-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cream);
  margin-bottom: 38px;
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Large CTA button ────────────────────────────────────────── */
.btn-cta-lg {
  display: inline-block;
  background: var(--rust);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 38px;
  border-radius: 2px;
  transition: background 0.15s, transform 0.15s;
}
.btn-cta-lg:hover { background: var(--rust-dark); transform: translateY(-2px); }

/* ── Who I Work With ─────────────────────────────────────────── */
.who-i-work-with {
  background: var(--offcream);
  padding: clamp(56px, 8vw, 80px) 24px;
}
.who-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin-bottom: 14px;
}
.section-label.light { color: var(--rust); }
.who-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.who-text p {
  font-size: 1rem;
  color: #4a4038;
  line-height: 1.8;
}
.who-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-left: 3px solid var(--rust);
  border-radius: 3px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.who-card:hover { transform: translateX(3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.who-card-icon { color: var(--rust); flex-shrink: 0; line-height: 0; margin-top: 2px; }
.who-card-icon svg { width: 30px; height: 30px; }
.who-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 5px;
}
.who-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── What I Can Handle ───────────────────────────────────────── */
.what-i-buy {
  background: var(--white);
  padding: clamp(56px, 8vw, 80px) 24px;
  border-top: 1px solid var(--border-cream);
}
.what-i-buy-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.section-title-block {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-title-block .section-label { text-align: center; }
.section-title-block h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 14px;
}
.section-title-block p {
  font-size: 1rem;
  color: #4a4038;
  line-height: 1.75;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.buy-item {
  background: var(--offcream);
  border: 1px solid var(--border-cream);
  border-radius: 3px;
  padding: 22px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s;
}
.buy-item:hover {
  border-color: var(--rust);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.buy-icon { color: var(--rust); flex-shrink: 0; line-height: 0; margin-top: 1px; }
.buy-icon svg { width: 32px; height: 32px; }
.buy-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 5px;
}
.buy-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ── How It Works ────────────────────────────────────────────── */
.how-it-works {
  background: var(--dark);
  padding: clamp(56px, 8vw, 84px) 24px;
  text-align: center;
  border-top: 3px solid var(--rust);
}
.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.how-it-works .section-label { color: var(--rust); }
.how-it-works h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 52px;
}
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 0 28px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--rust);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.step-divider {
  font-size: 2rem;
  color: var(--rust);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Why Us ──────────────────────────────────────────────────── */
.why-us {
  background: var(--offcream);
  padding: clamp(56px, 8vw, 84px) 24px;
}
.why-us-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.why-us-inner .section-label { text-align: center; }
.why-us-inner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 30px;
}
.why-us-body p {
  font-size: 1.05rem;
  color: #4a4038;
  line-height: 1.85;
  margin-bottom: 20px;
}
.why-us-body p:last-child { margin-bottom: 0; }

/* ── Sell CTA ────────────────────────────────────────────────── */
.sell-cta {
  background: var(--rust);
  padding: clamp(56px, 8vw, 84px) 24px;
  text-align: center;
}
.sell-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.sell-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--white);
  margin-bottom: 16px;
}
.sell-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}
.sell-cta .btn-cta-lg {
  background: var(--dark);
  color: var(--white);
}
.sell-cta .btn-cta-lg:hover { background: var(--dark-mid); }
.cta-note {
  margin-top: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .who-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .steps { flex-direction: column; align-items: center; gap: 8px; }
  .step { max-width: 380px; padding: 0; }
  .step-divider { transform: rotate(90deg); }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.sell-faq {
  background: var(--white);
  padding: clamp(56px, 8vw, 84px) 24px;
  border-top: 1px solid var(--border-cream);
}
.sell-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.sell-faq .section-label { text-align: center; }
.sell-faq h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 44px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 22px 4px;
  border-top: 1px solid var(--border-cream);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-cream); }
.faq-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.98rem;
  color: #4a4038;
  line-height: 1.7;
}

/* Contextual link inside a who-card (e.g. estate card → estate page) */
.who-card-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
}
.who-card-link:hover { color: var(--rust-dark); }

/* ── Estate callout band ─────────────────────────────────────── */
.estate-callout {
  background: var(--dark);
  padding: clamp(36px, 6vw, 56px) 24px;
  border-top: 3px solid var(--rust);
}
.estate-callout-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.estate-callout-text {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
}
.estate-callout-icon { color: var(--rust); flex-shrink: 0; line-height: 0; margin-top: 4px; }
.estate-callout-icon svg { width: 40px; height: 40px; }
.estate-callout strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.estate-callout p {
  font-size: 0.98rem;
  color: var(--cream);
  line-height: 1.6;
  margin: 0;
}
.estate-callout .btn-cta-lg { flex-shrink: 0; }
@media (max-width: 760px) {
  .estate-callout-inner { flex-direction: column; align-items: flex-start; }
}
