/* ============================================================
   Auctions at Booth Ready — page-specific styles
   Complements /styles.css (uses same tokens: ink, parchment, oxblood, brass)
   ============================================================ */

/* ===== Hero adjustment ===== */
.auctions-hero { padding-bottom: 32px; }
.auctions-hero .hero-title { max-width: 22ch; }

/* ===== Numbers strip ===== */
.auctions-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.auctions-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.strip-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.01em;
}
.strip-item--accent .strip-num {
  color: var(--brass);
  position: relative;
}
.strip-item--accent .strip-num::after {
  content: "★";
  position: absolute;
  top: -4px;
  margin-left: 6px;
  font-size: 16px;
  color: var(--oxblood);
}
.strip-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.75);
  font-weight: 500;
}
@media (max-width: 720px) {
  .auctions-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Section variants ===== */
.section-alt { background: var(--parchment-deep); }

/* ===== How it works ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.how-card {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--oxblood);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
}
.how-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== Why it works ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  margin-top: 40px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--oxblood);
  line-height: 1.2;
}
.why-item p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.tier--featured {
  border-color: var(--oxblood);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oxblood);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.tier-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.2;
}
.tier-tag {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.tier-amt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.tier-unit {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--oxblood);
  border-bottom: 2px solid var(--oxblood);
  transform: rotate(-45deg);
}
.tier-sample {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(139,46,42,0.4);
  transition: color .15s, text-decoration-color .15s;
}
.tier-sample:hover {
  color: var(--oxblood-deep);
  text-decoration-color: var(--oxblood);
}
.tier-sample::after {
  content: "↗";
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.tier-form { margin: 0; }
.btn-full { width: 100%; justify-content: center; }
.tier-fine {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}
.pricing-foot {
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.pricing-foot a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(139,46,42,0.4);
}
.pricing-foot a:hover { text-decoration-color: var(--oxblood); }
@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .tier--featured { transform: none; }
}

/* ===== Credibility quote ===== */
.credibility-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
}
.credibility-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
}
.credibility-quote footer {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.credibility-quote footer strong { color: var(--ink); font-weight: 600; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}
.final-cta p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.final-cta .hero-cta { justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  background: var(--parchment);
}
.site-footer a { color: var(--oxblood); }

/* ============================================================
   Intake form (used on /auctions/intake/)
   ============================================================ */
.intake-hero { padding-bottom: 24px; }
.intake-hero .hero-title { font-size: clamp(36px, 5vw, 58px); max-width: 24ch; }

.paid-banner {
  display: none;
  background: #2f6b3b;
  color: #f0fdf4;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.paid-banner.visible { display: flex; }
.paid-banner::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,253,244,0.2);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.intake-form {
  max-width: 760px;
  margin: 0 auto;
}
.intake-section {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.intake-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.intake-section .section-hint {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.field .field-hint {
  font-size: 12px;
  color: var(--muted);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="date"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--oxblood);
  box-shadow: 0 0 0 3px rgba(139,46,42,0.15);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--parchment);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.radio-option:hover { border-color: var(--oxblood); }
.radio-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--oxblood);
}
.radio-option-text { display: flex; flex-direction: column; gap: 2px; }
.radio-option-title { font-weight: 600; font-size: 15px; color: var(--ink); }
.radio-option-desc { font-size: 13px; color: var(--muted); }
.radio-option input[type="radio"]:checked + .radio-option-text .radio-option-title {
  color: var(--oxblood);
}
.intake-submit {
  text-align: center;
  margin-top: 32px;
}
.intake-submit .btn { min-width: 240px; }
.intake-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* What happens next panel (intake form) */
.whats-next {
  background: var(--parchment);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 36px;
}
.whats-next-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0 0 16px;
}
.whats-next-steps {
  counter-reset: wn-step;
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}
.whats-next-steps li {
  counter-increment: wn-step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
  line-height: 1.55;
  color: var(--ink);
}
.whats-next-steps li::before {
  content: counter(wn-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--oxblood);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.whats-next-steps li a { color: var(--oxblood); }
.whats-next-foot {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.whats-next-foot a { color: var(--oxblood); }
@media (max-width: 560px) {
  .whats-next { padding: 22px 18px; }
}
