@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --gold: #c9a962;
  --gray: #f5f5f5;
  --text: #333333;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

a { color: var(--charcoal); text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(94%, var(--max)); margin: 0 auto; }

.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.55rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  margin-left: 1.5rem;
  font-weight: 500;
}

.top-bar a:hover { color: var(--gold); }

.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.site-header nav a {
  margin-left: 2rem;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header nav a:hover { color: var(--gold); }

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  background-color: var(--black);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

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

.hero-sub {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 0;
  cursor: pointer;
  transition: all .2s;
}

.btn:hover { background: var(--gold); color: var(--black); text-decoration: none; }

.btn-dark { background: var(--black); color: var(--white); }

.btn-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover { background: var(--white); color: var(--black); }

.section { padding: 5rem 0; }
.section-alt { background: var(--gray); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.section-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-bottom: 2px solid var(--black);
  padding-bottom: 0.2rem;
}

.section-link:hover { border-color: var(--gold); color: var(--black); }

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.market {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.market img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s;
}

.market:hover img { transform: scale(1.05); }

.market::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  z-index: 1;
}

.market h3 {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.listing {
  border: 1px solid #eee;
  background: var(--white);
  transition: box-shadow .2s;
}

.listing:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.listing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.listing:hover .listing-image img { transform: scale(1.03); }

.listing-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  font-weight: 600;
}

.listing-body { padding: 1.25rem; }

.listing-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.5rem;
}

.listing h3 { font-size: 1.15rem; margin: 0 0 0.3rem; }

.listing-location { color: #666; font-size: 0.9rem; margin-bottom: 0.75rem; }

.listing-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.listing-specs {
  font-size: 0.85rem;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}

.sample-tag {
  color: var(--gold);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.dark {
  background: var(--black);
  color: var(--white);
}

.dark h2 { color: var(--white); }

.contact-section { padding: 6rem 0; }

.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 600px;
}

.contact-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

.note { font-size: 0.85rem; color: #666; margin-top: 1rem; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a { color: var(--gold); }
