/* Bates Auction & Realty — Main Stylesheet */


/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #1b3a52;
  --navy-dark:  #0f2233;
  --navy-mid:   #1c3a52;
  --teal:       #2f9e7a;
  --teal-light: #3ab88a;
  --teal-pale:  #eef8f4;
  --gray-100:   #f4f7fa;
  --gray-200:   #e4edf5;
  --gray-400:   #8aa4be;
  --gray-600:   #4a6a8a;
  --gray-800:   #1c2b3a;
  --live-red:   #d63a4a;
  --white:      #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-serif:   'Lora', serif;

  --shadow-card: 0 2px 16px rgba(27,58,82,0.09);
  --shadow-card-hover: 0 8px 32px rgba(27,58,82,0.16);
  --radius: 3px;
  --transition: 0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--teal-light);
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal-light); flex-shrink: 0; }
.section-title {
  font-family: var(--font-display); font-size: 44px; font-weight: 800;
  text-transform: uppercase; color: var(--navy-dark); line-height: 1; letter-spacing: -0.5px;
}
.teal-bar { width: 44px; height: 3px; background: var(--teal-light); margin: 14px 0 36px; }
.badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px;
}
.badge-timed { background: rgba(47,158,122,0.12); color: var(--teal); }
.badge-live  { background: rgba(214,58,74,0.1);  color: var(--live-red); display: flex; align-items: center; gap: 6px; }
.badge-live::before { content: ''; width: 6px; height: 6px; background: var(--live-red); border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.tag-navy { background: var(--navy); color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 12px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; color: rgba(255,255,255,0.55); }
.topbar-left a { color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-left a:hover { color: var(--teal-light); }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { color: var(--teal-light); font-weight: 600; letter-spacing: 0.5px; transition: opacity var(--transition); }
.topbar-right a:hover { opacity: 0.75; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 15px; }
.nav-logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 1px;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 2px; }
.nav-logo-tagline { font-size: 10px; color: var(--gray-400); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; }
.nav-links a {
  color: var(--gray-600); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 28px 18px; border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover { color: var(--navy-dark); border-bottom-color: var(--gray-200); }
.nav-links a.active { color: var(--navy-dark); border-bottom-color: var(--teal-light); }
.nav-cta {
  background: var(--navy); color: #fff; padding: 11px 24px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--teal); }

/* ============================================================
   BAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, #1f4a3a 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute; right: -20px; bottom: -30px;
  font-family: var(--font-display); font-size: 160px; font-weight: 800; text-transform: uppercase;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; white-space: nowrap;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-light), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--teal-light); }
.page-hero h1 { font-family: var(--font-display); font-size: 54px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1; margin-bottom: 14px; }
.page-hero h1 em { color: var(--teal-light); font-style: normal; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.6; }
.page-hero-breadcrumb { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 8px; }
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--teal-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo-wrap .nav-logo-name { font-size: 22px; color: #fff; }
.footer-logo-wrap .nav-logo-tagline { color: rgba(255,255,255,0.35); }
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 14px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-contact-icon { color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   BAGE SYSTEM
   ============================================================ */
/* page visibility handled by WP routing */


/* ============================================================
   HOME BAGE
   ============================================================ */
/* Split Hero */
.home-hero { display: grid; grid-template-columns: 1.25fr 1fr; min-height: 500px; }
.home-hero-left {
  padding: 68px 56px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background-color: var(--navy-dark);
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
/* Dark overlay so text stays readable over any photo */
.home-hero-left::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,22,35,0.82) 0%, rgba(15,34,51,0.75) 50%, rgba(20,52,40,0.80) 100%);
  z-index: 0;
}
/* Keep all direct children above the overlay */
.home-hero-left > * { position: relative; z-index: 1; }
.home-hero-left::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--teal-light), transparent);
  z-index: 2;
}
.home-hero-kicker { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.home-hero-kicker::before { content: ''; width: 24px; height: 1px; background: var(--teal-light); }
.home-hero-left h1 {
  font-family: var(--font-display); font-size: 64px; font-weight: 800; color: #fff;
  text-transform: uppercase; line-height: 0.92; letter-spacing: -1.5px; margin-bottom: 20px;
}
.home-hero-left h1 em { color: var(--teal-light); font-style: normal; display: block; }
.home-hero-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 36px; max-width: 400px; }
.hero-btns { display: flex; gap: 14px; }
.btn-primary { background: var(--teal-light); color: #fff; padding: 13px 30px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: background var(--transition), transform var(--transition); }
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.8); padding: 13px 30px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.25); transition: border-color var(--transition), color var(--transition); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.home-hero-right {
  background: var(--white);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--gray-200);
}
.hero-auction-list-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  border-bottom: 2px solid var(--gray-200);
  background: var(--gray-100);
  flex-shrink: 0;
}
.hero-list-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-600); }
.hero-list-viewall { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-light); border-bottom: 1px solid var(--teal-light); padding-bottom: 1px; }
.hero-auction-list { flex: 1; overflow-y: auto; }
.hero-auction-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer; position: relative;
  transition: background var(--transition);
}
.hero-auction-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: background var(--transition); }
.hero-auction-item:hover { background: var(--gray-100); }
.hero-auction-item:hover::before { background: var(--teal-light); }
.hero-auction-item:last-child { border-bottom: none; }
.hai-left { flex: 1; min-width: 0; }
.hai-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 5px; }
.hai-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; line-height: 1.2; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hai-meta { font-size: 12px; color: var(--gray-400); }
.hai-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.hai-arrow { font-size: 14px; color: var(--gray-200); font-weight: 700; transition: transform var(--transition), color var(--transition); }
.hero-auction-item:hover .hai-arrow { transform: translateX(3px); color: var(--teal-light); }
.hai-section-label {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 32px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray-600);
}
.hai-section-label:first-child { border-top: none; }
.hai-section-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hai-section-dot.live { background: var(--live-red); box-shadow: 0 0 0 2px rgba(214,58,74,0.2); }
.hai-section-dot.upcoming { background: var(--teal-light); }

/* Single auction / empty state */
.hero-auction-list.single-auction { display: flex; flex-direction: column; }
.hero-auction-featured {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 40px 36px; cursor: pointer;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.hero-auction-featured:hover { background: var(--gray-100); }
.hero-auction-featured::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--teal-light); }
.haf-badge { margin-bottom: 16px; }
.haf-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.haf-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; line-height: 1.1; margin-bottom: 14px; }
.haf-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.haf-meta-item { font-size: 13px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }
.haf-cta { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 8px; }
.haf-cta-arrow { transition: transform var(--transition); }
.hero-auction-featured:hover .haf-cta-arrow { transform: translateX(4px); }
.hero-no-auctions {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 48px 36px; gap: 0;
}
.hero-no-auctions-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.4; }
.hero-no-auctions-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.hero-no-auctions-text { font-size: 13px; color: var(--gray-400); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }
.hero-no-auctions-cta { background: var(--navy); color: #fff; padding: 11px 24px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background var(--transition); }
.hero-no-auctions-cta:hover { background: var(--teal); }

/* Ticker */
.ticker {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;
}
.ticker .container { display: flex; align-items: center; gap: 24px; }
.ticker-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); white-space: nowrap; }
.ticker-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.ticker-scroll { display: flex; gap: 48px; overflow: hidden; flex: 1; }
.ticker-item { font-size: 12px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.ticker-item strong { color: #fff; font-weight: 600; }

/* Stats bar */
.stats-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--teal-light); }
.stat-label { font-size: 11px; color: var(--gray-400); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* Auctions section */
.section { padding: 72px 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.view-all-link { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-light); border-bottom: 1px solid var(--teal-light); padding-bottom: 1px; transition: opacity var(--transition); }
.view-all-link:hover { opacity: 0.7; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 4px; margin-bottom: 32px; }
.filter-tab {
  padding: 9px 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: transparent; color: var(--gray-400); border: 1.5px solid var(--gray-200);
  transition: all var(--transition); cursor: pointer;
}
.filter-tab:hover { color: var(--navy); border-color: var(--gray-400); }
.filter-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Auction cards */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.auction-card {
  background: var(--white); border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
}
.auction-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card-header { display: flex; justify-content: space-between; align-items: center; padding: 11px 16px; background: var(--navy-dark); }
.card-type { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.card-img {
  height: 172px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
}
.card-img.img-green { background: linear-gradient(135deg, #1a4030 0%, #0d2a20 100%); }
.card-img.img-navy { background: linear-gradient(135deg, #1a2d42 0%, #0d1e2e 100%); }
.card-img.img-slate { background: linear-gradient(135deg, #253545 0%, #162030 100%); }
.card-img .img-placeholder-icon { font-size: 48px; opacity: 0.25; }
.card-body { padding: 22px; flex: 1; }
.card-seller { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; line-height: 1.2; margin-bottom: 14px; }
.card-detail { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.card-detail-icon { color: var(--teal-light); font-size: 13px; width: 16px; text-align: center; }
.card-footer { padding: 14px 22px; background: var(--gray-100); border-top: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.card-cta { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); transition: color var(--transition); }
.card-cta:hover { color: var(--teal-light); }
.card-arrow { color: var(--teal-light); font-weight: 700; transition: transform var(--transition); }
.auction-card:hover .card-arrow { transform: translateX(4px); }

/* Why us section */
.why-section { background: var(--navy-dark); padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; }
.why-left h2 em { color: var(--teal-light); font-style: normal; display: block; }
.why-tagline { font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 18px; line-height: 1.7; }
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-item:last-child { border-bottom: none; }
.why-icon { width: 44px; height: 44px; background: rgba(58,184,138,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.why-item-text h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: 6px; }
.why-item-text p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #1f6e52 100%);
  padding: 60px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; }
.cta-text h2 { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: -0.5px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.btn-white { background: #fff; color: var(--teal); padding: 14px 36px; font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; transition: transform var(--transition), box-shadow var(--transition); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ============================================================
   AUCTIONS BAGE
   ============================================================ */
.auctions-toolbar {
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  position: sticky; top: 80px; z-index: 90;
}
.auctions-toolbar .container { display: flex; justify-content: space-between; align-items: center; }
.auctions-toolbar-filters { display: flex; gap: 6px; }
.results-count { font-size: 13px; color: var(--gray-400); }
.results-count strong { color: var(--navy); }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--gray-100); border: 1.5px solid var(--gray-200); padding: 9px 16px; }
.search-box input { border: none; background: transparent; font-family: var(--font-body); font-size: 13px; color: var(--gray-800); outline: none; width: 200px; }
.search-box input::placeholder { color: var(--gray-400); }
.search-icon { color: var(--gray-400); }

.auctions-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ============================================================
   STAFF BAGE
   ============================================================ */
.staff-intro-band { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 40px 0; }
.staff-intro-band .container { display: flex; justify-content: space-between; align-items: center; }
.staff-intro-text h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; }
.staff-intro-text p { font-size: 14px; color: var(--gray-600); margin-top: 6px; max-width: 540px; }
.staff-count { font-family: var(--font-display); font-size: 56px; font-weight: 800; color: var(--teal-light); line-height: 1; }
.staff-count span { font-size: 16px; color: var(--gray-400); font-family: var(--font-body); display: block; text-transform: uppercase; letter-spacing: 2px; }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.staff-card { background: var(--white); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow var(--transition), transform var(--transition); }
.staff-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.staff-card-photo {
  height: 240px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.staff-card-photo .staff-initials {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  color: rgba(255,255,255,0.15); text-transform: uppercase; letter-spacing: 4px;
}
.staff-photo-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--teal-light); }
.staff-card-body { padding: 24px; }
.staff-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 4px; }
.staff-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; }
.staff-bio { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }
.staff-contact { display: flex; flex-direction: column; gap: 6px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.staff-contact a { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.staff-contact a:hover { color: var(--teal-light); }
.staff-card.featured-staff .staff-card-photo { background: linear-gradient(135deg, #0d3a28, #1a4a38); }

/* ============================================================
   ABOUT BAGE
   ============================================================ */
.about-intro { padding: 80px 0; }
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-block {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a4a38 100%);
  height: 400px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-block::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60%; height: 4px; background: var(--teal-light); }
.about-img-text { font-family: var(--font-display); font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.06); text-transform: uppercase; text-align: center; line-height: 1; }
.about-year-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--teal-light); color: #fff; padding: 12px 20px; text-align: center;
}
.about-year-badge .year { font-family: var(--font-display); font-size: 32px; font-weight: 800; display: block; line-height: 1; }
.about-year-badge .year-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }
.about-text-block h2 { font-family: var(--font-display); font-size: 46px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; line-height: 1; margin-bottom: 20px; }
.about-text-block h2 em { color: var(--teal-light); font-style: normal; }
.about-text-block p { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.about-text-block p:first-of-type { font-family: var(--font-serif); font-size: 16px; color: var(--gray-800); font-style: italic; }

.values-section { background: var(--gray-100); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 40px; }
.value-card { background: var(--white); padding: 36px 28px; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gray-200); }
.value-card:first-child::before { background: var(--teal-light); }
.value-num { font-family: var(--font-display); font-size: 64px; font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: 16px; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 10px; }
.value-text { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

.history-section { padding: 80px 0; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; max-width: 680px; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--teal-light); }
.timeline-content h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 6px; }
.timeline-content p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   CONTACT BAGE
   ============================================================ */
.contact-layout { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.contact-form-section h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 8px; }
.contact-form-section p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--gray-800);
  background: var(--white); border: 1.5px solid var(--gray-200);
  outline: none; transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal-light); }
.form-textarea { height: 140px; resize: vertical; }
.form-submit { background: var(--navy); color: #fff; padding: 14px 36px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; width: 100%; transition: background var(--transition); }
.form-submit:hover { background: var(--teal); }

.contact-info-section { padding-top: 8px; }
.contact-info-section h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 6px; }
.contact-info-section p.sub { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; }
.contact-info-card { background: var(--gray-100); border: 1px solid var(--gray-200); padding: 28px; margin-bottom: 20px; }
.contact-info-card h4 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 14px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 12px; }
.contact-detail:last-child { margin-bottom: 0; }
.c-icon { color: var(--teal-light); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.c-text strong { display: block; font-size: 14px; color: var(--navy-dark); font-weight: 600; }
.c-text span { font-size: 12px; color: var(--gray-400); }
.office-hours { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; }
.hours-row .day { color: var(--gray-600); }
.hours-row .time { color: var(--navy); font-weight: 600; }
.hours-divider { height: 1px; background: var(--gray-200); margin: 6px 0; }

/* ============================================================
   MICRO ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page.active .home-hero-left h1 { animation: fadeInUp 0.5s ease both; }
.page.active .home-hero-left p  { animation: fadeInUp 0.5s 0.1s ease both; }
.page.active .hero-btns          { animation: fadeInUp 0.5s 0.2s ease both; }

/* ============================================================
   AUCTION TYPE STRIP
   ============================================================ */
.auction-type-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--gray-200);
}
.auction-type-strip .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.atype-item {
  display: flex; align-items: center; gap: 18px;
  padding: 28px 32px; cursor: pointer;
  transition: background var(--transition);
}
.atype-item:hover { background: var(--gray-100); }
.atype-item:hover .atype-title { color: var(--teal); }
.atype-item:hover .atype-arrow { transform: translateX(4px); color: var(--teal); }
.atype-icon { font-size: 26px; flex-shrink: 0; }
.atype-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.3px;
  transition: color var(--transition);
}
.atype-desc { font-size: 12px; color: var(--gray-400); margin-top: 4px; line-height: 1.5; }
.atype-arrow { font-size: 18px; color: var(--gray-200); font-weight: 700; margin-left: auto; flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.atype-divider { width: 1px; background: var(--gray-200); margin: 16px 0; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-layout { padding: 72px 0; }
.faq-grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.faq-sidebar { position: sticky; top: 110px; }
.faq-sidebar-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-400); margin-bottom: 12px; }
.faq-sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.faq-sidebar-link {
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--gray-600);
  cursor: pointer; border-left: 3px solid transparent;
  transition: all var(--transition);
}
.faq-sidebar-link:hover, .faq-sidebar-link.active { color: var(--navy-dark); border-left-color: var(--teal-light); background: var(--teal-pale); }
.faq-section { margin-bottom: 52px; }
.faq-section:last-child { margin-bottom: 0; }
.faq-section-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.3px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-200); margin-bottom: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--navy-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question.open { color: var(--teal); }
.faq-chevron { font-size: 12px; color: var(--teal-light); flex-shrink: 0; transition: transform 0.2s; font-weight: 700; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { font-size: 14px; color: var(--gray-600); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s ease; }
.faq-answer.open { max-height: 600px; padding-bottom: 20px; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { padding-left: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.faq-answer li { font-size: 14px; color: var(--gray-600); }

/* ============================================================
   AUCTION TYPE PAGES
   ============================================================ */
.atype-page-intro { padding: 64px 0; background: var(--white); }
.atype-page-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.atype-how-section { background: var(--gray-100); padding: 72px 0; border-top: 1px solid var(--gray-200); }
.atype-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; }
.atype-step { background: var(--white); padding: 32px 26px; position: relative; }
.atype-step-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: 14px; }
.atype-step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 8px; }
.atype-step-text { font-size: 13px; color: var(--gray-600); line-height: 1.65; }
.atype-step::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); font-size: 18px; color: var(--gray-200); z-index: 1; }
.atype-step:last-child::after { display: none; }
.atype-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.atype-feature { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--teal-pale); border: 1px solid rgba(47,158,122,0.15); }
.atype-feature-icon { color: var(--teal-light); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.atype-feature-title { font-size: 13px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.atype-feature-text { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.atype-visual {
  height: 380px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.atype-visual.live-bg { background: linear-gradient(135deg, #0f2233 0%, #1a4a38 100%); }
.atype-visual.hybrid-bg { background: linear-gradient(135deg, #1a2d42 0%, #2a4a5a 100%); }
.atype-visual.timed-bg { background: linear-gradient(135deg, #1a1a2a 0%, #2a3a4a 100%); }
.atype-visual-label { font-family: var(--font-display); font-size: 90px; font-weight: 800; color: rgba(255,255,255,0.06); text-transform: uppercase; text-align: center; line-height: 1; }
.atype-visual-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--teal-light); color: #fff; padding: 14px 22px;
}
.atype-visual-badge .big { font-family: var(--font-display); font-size: 28px; font-weight: 800; display: block; line-height: 1; }
.atype-visual-badge .small { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }


/* ============================================================
   MOBILE NAVIGATION TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   TABLET — 1024px and below
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  /* Hero */
  .home-hero { grid-template-columns: 1fr 1fr; }
  .home-hero-left h1 { font-size: 52px; }

  /* Why section */
  .why-grid { gap: 48px; }

  /* Cards */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Staff */
  .staff-grid { grid-template-columns: repeat(2, 1fr); }

  /* Values */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Auction type steps */
  .atype-steps { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Auction type strip */
  .auction-type-strip .container { flex-direction: column; gap: 0; }
  .atype-divider { display: none; }
  .atype-item { padding: 20px 0; border-bottom: 1px solid var(--gray-200); }
  .atype-item:last-child { border-bottom: none; }
}

/* ============================================================
   MOBILE — 768px and below
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* ── TOPBAR ─────────────────────────────────────────────── */
  .topbar { display: none; }

  /* ── NAVBAR ─────────────────────────────────────────────── */
  .navbar .container { height: 64px; position: relative; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--teal-light);
    box-shadow: 0 8px 24px rgba(27,58,82,0.12);
    z-index: 200;
    flex-direction: column;
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy-dark);
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active { color: var(--teal); }
  .nav-cta { display: none; }

  /* ── HOME HERO ──────────────────────────────────────────── */
  .home-hero { grid-template-columns: 1fr; min-height: auto; }

  .home-hero-left {
    padding: 48px 24px 40px;
    min-height: 420px;
  }
  .home-hero-left h1 { font-size: 44px; line-height: 0.95; margin-bottom: 16px; }
  .home-hero-left p { font-size: 14px; margin-bottom: 28px; }

  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; text-align: center; padding: 14px; }

  .home-hero-right {
    border-left: none;
    border-top: 2px solid var(--gray-200);
    max-height: 400px;
  }

  .hero-auction-list-header { padding: 14px 20px; }
  .hero-list-label { font-size: 10px; }

  .hero-auction-item { padding: 14px 20px; }
  .hai-title { font-size: 13px; }
  .hai-eyebrow { font-size: 9px; }
  .hai-section-label { padding: 6px 20px; }

  /* ── TICKER ─────────────────────────────────────────────── */
  .ticker .container { padding: 0 20px; }
  .ticker-label { display: none; }
  .ticker-sep { display: none; }

  /* ── AUCTION TYPE STRIP ─────────────────────────────────── */
  .auction-type-strip .container { flex-direction: column; }
  .atype-divider { display: none; }
  .atype-item { padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
  .atype-item:last-child { border-bottom: none; }

  /* ── SECTIONS ───────────────────────────────────────────── */
  .section { padding: 48px 0; }
  .section-title { font-size: 32px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── CARDS GRID ─────────────────────────────────────────── */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .auctions-full-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── WHY SELL ───────────────────────────────────────────── */
  .why-section { padding: 48px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-left h2 { font-size: 36px; }
  .why-tagline { font-size: 14px; }
  .why-item { padding: 18px 0; }
  .why-icon { width: 38px; height: 38px; font-size: 18px; flex-shrink: 0; }
  .why-item-text h4 { font-size: 15px; }

  /* ── CTA BANNER ─────────────────────────────────────────── */
  .cta-banner { padding: 40px 0; }
  .cta-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-text h2 { font-size: 28px; }
  .btn-white { width: 100%; text-align: center; padding: 14px; display: block; }

  /* ── PAGE HERO ──────────────────────────────────────────── */
  .page-hero { padding: 40px 0 36px; min-height: auto; }
  .page-hero::before { font-size: 100px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero p { font-size: 14px; }

  /* ── STAFF ──────────────────────────────────────────────── */
  .staff-grid { grid-template-columns: 1fr; gap: 20px; }
  .staff-card { flex-direction: column; }
  .staff-card-photo { height: 180px; }

  /* ── VALUES ─────────────────────────────────────────────── */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .value-card { padding: 28px 20px; }
  .value-num { font-size: 36px; }
  .value-title { font-size: 16px; }

  /* ── CONTACT ────────────────────────────────────────────── */
  .contact-layout { padding: 0; }
  .contact-form-col,
  .contact-info-col { width: 100%; }
  .form-row { flex-direction: column; gap: 0; }

  /* ── FAQ ────────────────────────────────────────────────── */
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-sidebar { display: none; }

  /* ── FOOTER ─────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── AUCTION TYPE PAGES ─────────────────────────────────── */
  .atype-page-intro .container { grid-template-columns: 1fr; gap: 32px; }
  .atype-visual { height: 240px; }
  .atype-steps { grid-template-columns: 1fr 1fr; gap: 2px; }
  .atype-features-grid { grid-template-columns: 1fr; }

  /* ── SINGLE AUCTION ─────────────────────────────────────── */
  .auction-detail-grid { grid-template-columns: 1fr !important; }

  /* ── PRIVACY / FAQ SIDEBAR ──────────────────────────────── */
  .privacy-sidebar { display: none; }
  .privacy-grid { grid-template-columns: 1fr !important; }

  /* ── AUCTIONS TOOLBAR ───────────────────────────────────── */
  .auctions-toolbar .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .auctions-toolbar-filters { flex-wrap: wrap; gap: 6px; }
  .auctions-toolbar-search { width: 100%; }
  .auctions-toolbar-search input { width: 100%; }
  #auction-search { width: 100%; box-sizing: border-box; }

  /* ── ABOUT PAGE ─────────────────────────────────────────── */
  .about-story-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ============================================================
   SMALL MOBILE — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  .home-hero-left h1 { font-size: 36px; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .why-left h2 { font-size: 30px; }
  .cta-text h2 { font-size: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .atype-steps { grid-template-columns: 1fr; }
  .filter-tab { font-size: 10px; padding: 7px 10px; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT LAYOUT & SINGLE AUCTION — mobile overrides
   for inline-grid elements
   ============================================================ */
@media (max-width: 768px) {
  .contact-layout[style] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  /* Single auction sidebar stacks below content */
  .single-auction-grid[style],
  div[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns: 1fr 360px"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Privacy / FAQ two-col grids */
  div[style*="grid-template-columns:220px 1fr"],
  div[style*="grid-template-columns: 220px 1fr"] {
    display: block !important;
  }
  /* About page two-col grids */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Sticky sidebars — unstick on mobile */
  div[style*="position:sticky"],
  div[style*="position: sticky"] {
    position: relative !important;
    top: auto !important;
  }
  /* Nav logo text truncate on small screens */
  .nav-logo-name { font-size: 13px; }
}
