@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
  --bg: #1a1612;
  --bg-warm: #211c17;
  --bg-card: #2a2420;
  --fg: #f0ebe4;
  --fg-muted: #a89e93;
  --accent: #c8945a;
  --accent-light: #dbb07a;
  --accent-dark: #a07040;
  --faith: #d4a76a;
  --hunt: #7a9e6b;
  --homestead: #c4854c;
  --trail: #6b8ea0;
  --border: rgba(200, 148, 90, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 148, 90, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(122, 158, 107, 0.05), transparent),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(107, 142, 160, 0.05), transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 550px;
  line-height: 1.7;
  position: relative;
}

/* QUOTE STRIP */
.quote-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--accent-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-strip .attribution {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* COLLECTIONS */
.collections {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collections-header {
  text-align: center;
  margin-bottom: 4rem;
}

.collections-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.collections-header p {
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.collection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.collection-card:hover {
  transform: translateY(-2px);
}

.collection-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.collection-card.faith::after { background: var(--faith); }
.collection-card.hunt::after { background: var(--hunt); }
.collection-card.homestead::after { background: var(--homestead); }
.collection-card.trail::after { background: var(--trail); }

.collection-card:hover.faith { border-color: var(--faith); }
.collection-card:hover.hunt { border-color: var(--hunt); }
.collection-card:hover.homestead { border-color: var(--homestead); }
.collection-card:hover.trail { border-color: var(--trail); }

.collection-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.faith .collection-name { color: var(--faith); }
.hunt .collection-name { color: var(--hunt); }
.homestead .collection-name { color: var(--homestead); }
.trail .collection-name { color: var(--trail); }

.collection-audience {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.collection-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.collection-sample {
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.4;
}

/* THESIS */
.thesis {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.thesis-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thesis h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.thesis-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.thesis-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.thesis-bottom {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}

.thesis-bottom strong {
  color: var(--accent-light);
}

/* QUALITY */
.quality {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quality h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.quality-bar {
  font-size: 1.15rem;
  color: var(--accent-light);
  font-style: italic;
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.quality-item {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.quality-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--fg);
}

.quality-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(200, 148, 90, 0.06), transparent);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
  position: relative;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.8rem;
}

footer span {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .thesis-steps {
    flex-direction: column;
    align-items: center;
  }
  .collection-card {
    padding: 2rem 1.5rem;
  }
}
