/* ============================================================
   Bonnigson & Associates — Site stylesheet
   Aesthetic: editorial-warm. Cream paper, deep field-green,
   clay accent. Serif display + clean humanist sans body.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #f5f1e8;
  --cream-2: #ede6d3;
  --ink: #1c1f1a;
  --ink-soft: #3a3f37;
  --muted: #6b6f64;
  --line: #d9d1bd;
  --line-soft: #e8e1cc;
  --field: #2d3e2a;          /* deep field green */
  --field-2: #1f2c1d;
  --clay: #b04a2a;           /* auction-stamp clay */
  --clay-soft: #d6886b;
  --paper: #fbf8ef;
  --gold: #a3823a;
  --shadow: 0 1px 0 rgba(28,31,26,0.04), 0 8px 24px -12px rgba(28,31,26,0.12);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--field);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: all 0.15s ease;
}
a:hover { color: var(--clay); text-decoration-color: var(--clay); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== TYPOGRAPHY ====== */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: 0.4em; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.3em; font-family: var(--sans); letter-spacing: 0.02em; }

p { margin-bottom: 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 1rem;
  display: inline-block;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ====== HEADER / NAV ====== */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.header-top {
  background: var(--field);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-top a { color: var(--cream); text-decoration: none; }
.header-top a:hover { color: var(--clay-soft); }
.header-top-left, .header-top-right { display: flex; gap: 18px; align-items: center; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.brand-amp {
  color: var(--clay);
  font-style: italic;
  font-weight: 400;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 10px;
}

.nav-main {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-main a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.nav-main a:hover {
  color: var(--field);
  background: var(--cream-2);
}
.nav-main a.cta {
  background: var(--field);
  color: var(--cream);
  margin-left: 8px;
}
.nav-main a.cta:hover { background: var(--clay); color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.85rem;
}

/* ====== BUTTONS ====== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--field);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--field-2);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-clay {
  background: var(--clay);
  color: var(--cream);
}
.btn-clay:hover {
  background: #963d22;
  color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--field);
  border-color: var(--field);
}
.btn-outline:hover {
  background: var(--field);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-soft);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--clay);
  border-color: var(--clay);
}

/* ====== HERO ====== */

.hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(176, 74, 42, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-est {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--clay);
  margin-bottom: 10px;
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}

.hero .lede {
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-side {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px;
  border-radius: 2px;
  position: relative;
}
.hero-side::before {
  content: 'NEXT';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--clay);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 4px 12px;
}
.hero-side-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-side h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.hero-side-date {
  color: var(--clay);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero-side-detail {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}

/* ====== SECTIONS ====== */

section.block {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
section.block.tight { padding: 56px 0; }
section.block.dark {
  background: var(--field);
  color: var(--cream);
  border-bottom-color: var(--field-2);
}
section.block.dark h2, section.block.dark h3 { color: var(--cream); }
section.block.dark p { color: rgba(245, 241, 232, 0.85); }
section.block.dark .eyebrow { color: var(--clay-soft); }
section.block.cream2 { background: var(--cream-2); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head-text { max-width: 640px; }
.section-head h2 { margin-bottom: 12px; }

/* ====== SERVICES GRID ====== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clay);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
}
.service-card .btn-ghost { align-self: flex-start; font-size: 0.88rem; }

/* ====== TRUST BAR ====== */

.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--field);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ====== AUCTION LIST ====== */

.auction-list { display: flex; flex-direction: column; gap: 18px; }
.auction-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  align-items: center;
  transition: all 0.18s ease;
  text-decoration: none;
  color: inherit;
}
.auction-row:hover {
  border-color: var(--field);
  transform: translateX(2px);
  color: inherit;
}
.auction-date {
  font-family: var(--serif);
  text-align: center;
}
.auction-date-month {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--clay);
  text-transform: uppercase;
}
.auction-date-day {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--field);
  margin: 4px 0;
}
.auction-date-year {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.auction-detail h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.auction-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.auction-meta span { display: flex; align-items: center; gap: 4px; }
.auction-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--field);
  white-space: nowrap;
}
.auction-row:hover .auction-cta { color: var(--clay); }

.auction-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--cream-2);
  color: var(--ink-soft);
  margin-right: 6px;
}
.auction-tag.live { background: var(--clay); color: var(--cream); }
.auction-tag.online { background: var(--field); color: var(--cream); }

/* ====== TESTIMONIAL / QUOTE ====== */

.quote-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.quote-card {
  padding: 32px 36px;
  background: var(--paper);
  border-left: 3px solid var(--clay);
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.quote-attr {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quote-attr strong { color: var(--ink); }

/* ====== FAQ ====== */

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-q:hover { color: var(--clay); }
.faq-q-icon {
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--clay);
  transition: transform 0.2s ease;
  font-weight: 300;
  margin-left: 20px;
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner { padding-bottom: 24px; padding-right: 40px; color: var(--ink-soft); }

/* ====== FOOTER ====== */

.site-footer {
  background: var(--field-2);
  color: rgba(245, 241, 232, 0.8);
  padding: 64px 0 28px;
  font-size: 0.92rem;
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--clay-soft); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-mark { color: var(--cream); font-size: 1.4rem; }
.footer-brand .brand-amp { color: var(--clay-soft); }
.footer-brand p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li { font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.55);
}

/* ====== BREADCRUMBS ====== */

.breadcrumb {
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb .sep { margin: 0 8px; color: var(--line); }

/* ====== PAGE HEAD (interior) ====== */

.page-head {
  padding: 56px 0 40px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: 16px; }
.page-head .lede { max-width: 720px; }

/* ====== PROSE (article body) ====== */

.prose {
  max-width: 720px;
}
.prose h2 {
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  padding-top: 0.4em;
}
.prose h3 {
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}
.prose p, .prose ul, .prose ol {
  margin-bottom: 1.1em;
  font-size: 1.02rem;
  line-height: 1.7;
}
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; color: var(--ink-soft); }
.prose strong { color: var(--ink); }

/* Pull-quote inside prose */
.pull {
  border-left: 3px solid var(--clay);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  background: var(--cream-2);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.compare-table td:first-child { font-weight: 500; color: var(--ink); }

/* ====== CONTACT / FORM ====== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info-block .big {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.contact-info-block .big a { color: var(--ink); text-decoration: none; }
.contact-info-block .big a:hover { color: var(--clay); }

.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--field);
  box-shadow: 0 0 0 3px rgba(45, 62, 42, 0.1);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ====== UTIL ====== */

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ====== RESPONSIVE ====== */

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  section.block { padding: 56px 0; }
  .nav-main { display: none; }
  .nav-main.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    gap: 4px;
    z-index: 49;
  }
  .nav-main.open a {
    padding: 12px 14px;
    width: 100%;
  }
  .nav-toggle { display: inline-block; }
  .auction-row {
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 20px;
  }
  .auction-cta { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--line); }
  .header-top { font-size: 0.78rem; }
  .header-top .container { justify-content: center; gap: 14px; }
  .header-top-right { display: none; }
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}
