/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9973A;
  --gold-light:  #E8BE6A;
  --gold-dark:   #8B6320;
  --dark:        #1A1208;
  --dark-2:      #2C1E08;
  --mid:         #4A3510;
  --cream:       #FBF5E9;
  --white:       #FFFFFF;
  --text:        #2D1F05;
  --text-muted:  #6B5030;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.15);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.25);
  --transition:  .25s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.center { text-align: center; }
.gold { color: var(--gold-light); }

.section { padding: 5rem 0; }
.section-light { background: var(--cream); }
.section-dark  { background: var(--dark);  color: var(--cream); }
.section-gold  { background: var(--gold-dark); color: var(--cream); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-label.light { color: var(--gold-light); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 6px 20px rgba(201,151,58,.4); }

.btn-dark {
  background: var(--dark);
  color: var(--gold-light);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-2); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold-light); color: var(--dark); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--cream); }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 18, 8, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,151,58,.2);
  height: 72px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.brand-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 400;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1506806732259-39c2d0268443?w=1600&q=80') center/cover no-repeat;
  padding-top: 72px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,.92) 0%, rgba(44,30,8,.75) 60%, rgba(26,18,8,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem 1.5rem;
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-powered {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.hero-powered a {
  color: var(--gold);
  font-weight: 700;
}
.hero-powered a:hover { color: var(--gold-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 5px auto 0;
  animation: scrollHint 1.8s infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── Two-col layout ───────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-text p { color: var(--text-muted); }
.section-dark .col-text p,
.section-gold .col-text p { color: rgba(255,255,255,.75); }

/* ── About section extras ─────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-story-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(201,151,58,.2);
}
.about-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.badge-icon { font-size: 1.2rem; }

/* ── Cards ────────────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,151,58,.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,151,58,.2);
}
.card-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.card h3 { color: var(--gold-light); }
.card p  { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ── Featured Auction ────────────────────────────────────────────────── */
.featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.auction-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}
.featured-info h3 { color: var(--gold-light); font-size: 1.4rem; margin-bottom: .75rem; }
.featured-info p  { color: rgba(255,255,255,.75); margin-bottom: 1.25rem; }
.auction-details {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.auction-details li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.auction-details strong { color: var(--cream); }
.detail-icon { font-size: 1rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .featured-layout { grid-template-columns: 1fr; }
}

/* Coming Soon card */
.coming-soon-card {
  max-width: 680px;
  margin: 1rem auto 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,151,58,.12) 0%, rgba(201,151,58,.04) 100%);
  border: 1px solid rgba(201,151,58,.35);
  border-radius: var(--radius);
  padding: 2.75rem 2rem;
  box-shadow: var(--shadow-lg);
}
.coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.coming-soon-card h3 { color: var(--gold-light); font-size: 1.6rem; margin-bottom: .35rem; }
.coming-soon-date {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.coming-soon-card p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 1rem; }
.coming-soon-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* Past auction light variants */
.section-intro-dark {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.featured-info-light h3 { color: var(--gold-dark); }
.featured-info-light p  { color: var(--text-muted); }
.auction-badge-closed {
  background: #5a7d3c;
  animation: none;
}
.auction-details-light li { color: var(--text-muted); }
.auction-details-light strong { color: var(--text); }

@media (max-width: 640px) {
  .coming-soon-cta { flex-direction: column; }
  .coming-soon-cta .btn { text-align: center; }
}

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.step h3 { color: var(--white); }
.step p  { font-size: .9rem; color: rgba(255,255,255,.7); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  align-self: center;
  padding: 0 .25rem;
  flex-shrink: 0;
}

/* ── Trust bar ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,151,58,.2);
  border-bottom: 1px solid rgba(201,151,58,.2);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--cream);
  font-size: .875rem;
  font-weight: 700;
}
.trust-icon { font-size: 1.1rem; }

/* ── Location / map ───────────────────────────────────────────────────── */
.col-map iframe {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info { margin-top: 1.5rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .95rem;
}
.contact-row a:hover { color: var(--gold); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--mid) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-inner p  { color: rgba(255,255,255,.75); margin: .75rem auto 2rem; max-width: 500px; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .75rem;
  border: 2px solid var(--gold);
}
.footer-brand p { font-size: .875rem; line-height: 1.6; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .about-story-img { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .steps { gap: 1rem; }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201,151,58,.2);
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }

  .cards { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
}
