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

:root {
  --green-dark:    #080f09;
  --green-surface: #101e12;
  --green-mid:     #152b18;
  --green-accent:  #2e7d32;
  --green-light:   #43a047;
  --gold:          #c9a84c;
  --gold-light:    #e0c070;
  --text:          #f0f4f0;
  --text-muted:    #8aab8d;
  --card-bg:       #0f1c11;
  --card-border:   #1e3d22;
  --radius:        12px;
  --radius-sm:     7px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--green-dark);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Header ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 15, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon { font-size: 1.3rem; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.3px;
}

nav { display: flex; gap: 2rem; }

nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover { color: var(--text); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #0a1a0b;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  background: var(--green-accent);
  color: #fff;
  border-radius: var(--radius-sm);
}

.btn-sm:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46, 125, 50, 0.18) 0%, transparent 70%),
    var(--green-dark);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.hero-inner { max-width: 640px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--green-surface);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 1.5rem;
}

.trust-bar-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 2rem;
}

.trust-icon { font-size: 1rem; }

.trust-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--card-border);
  flex-shrink: 0;
}

/* ─── Section Headers ─── */
.section-header { margin-bottom: 2.5rem; }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 520px;
}

/* ─── Listings ─── */
.listings {
  padding: 4.5rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ─── Cards ─── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.card.sold {
  border-top-color: var(--text-muted);
  opacity: 0.7;
}

.card.sold:hover { transform: none; box-shadow: none; }

.card-img {
  position: relative;
  background: var(--green-mid);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 9, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted);
  border: 2px solid rgba(138, 171, 141, 0.3);
  margin: 1rem;
  border-radius: var(--radius-sm);
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.club-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge.good  { background: rgba(46, 125, 50, 0.25); color: #81c784; border: 1px solid rgba(46,125,50,0.4); }
.badge.great { background: rgba(21, 101, 192, 0.25); color: #90caf9; border: 1px solid rgba(21,101,192,0.4); }
.badge.mint  { background: rgba(0, 150, 136, 0.25); color: #80cbc4; border: 1px solid rgba(0,150,136,0.4); }

.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.desc {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-border);
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.sold-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.sold-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.listings-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── About ─── */
.about {
  background: var(--green-surface);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 4.5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  max-width: 520px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 160px;
}

.stat {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── Contact ─── */
.contact {
  padding: 5rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(46, 125, 50, 0.12) 0%, transparent 70%),
    var(--green-dark);
}

.contact-inner {
  max-width: 520px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.contact p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ─── Footer ─── */
footer {
  background: var(--green-surface);
  border-top: 1px solid var(--card-border);
  padding: 1.5rem;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.95rem;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  nav { gap: 1.1rem; }
  nav a { font-size: 0.8rem; }

  .trust-bar-inner { flex-direction: column; gap: 0.6rem; }
  .trust-divider { width: 2rem; height: 1px; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { flex-direction: row; justify-content: space-between; min-width: unset; }
  .stat { flex: 1; padding: 1rem; }

  .footer-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .about-stats { flex-direction: column; }
}
