:root {
  --bg: #0d0d0f;
  --surface: #17171a;
  --card-bg: #16151a;
  --text: #f2ece2;
  --text-muted: #b9b3a8;
  --accent-gold: #c9a227;
  --accent-maroon: #6b1f2e;
  --border: #2a282c;
  --display-font: "Playfair Display", Georgia, serif;
  --body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}

h1, h2 { font-family: var(--display-font); margin: 0 0 0.4em; }

p { margin: 0 0 1em; }

a { color: var(--accent-gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.stage-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.6em;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 0.5em;
}

.lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* Main */
main { max-width: 1080px; margin: 0 auto; padding: 3.5rem 1.5rem; }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.style-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.style-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.style-card h2 { font-size: 1.25rem; }

.style-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.swatch {
  height: 100px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
}

.swatch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.swatch-sample {
  font-size: 2.4rem;
  font-weight: 600;
}

.swatch-modern {
  background: #faf9f6;
}
.swatch-modern .swatch-sample {
  color: #1c1b19;
  font-family: var(--body-font);
}
.swatch-modern::after { background: #4a6670; }

.swatch-bold {
  background: #0d0d0d;
}
.swatch-bold .swatch-sample {
  color: #f2ece2;
  font-family: var(--display-font);
  font-weight: 900;
}
.swatch-bold::after { background: #c9a227; }

.swatch-classic {
  background: #f6f3ec;
}
.swatch-classic .swatch-sample {
  color: #1e1b18;
  font-family: Georgia, "Times New Roman", serif;
}
.swatch-classic::after { background: #6e2430; }

.view-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.view-link:hover { text-decoration: underline; }

/* CTA */
.cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.cta p { color: var(--text-muted); }

.btn-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--accent-gold);
  color: #17140f;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.btn-cta:hover { opacity: 0.9; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 800px) {
  .styles-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .hero { min-height: 340px; }
  .hero-content { padding-bottom: 2rem; }
}
