/* Base */
:root {
  --bg: #0d1117;
  --surface: #161b22;
  --border: #30363d;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #e8e2d9;
  --muted: #8b949e;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 96px 48px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  max-width: 680px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-rule {
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--border) 40%, transparent 100%);
  margin-top: 64px;
}

/* CREDENTIALS */
.credentials {
  padding: 40px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.credentials-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.credentials-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  color: var(--muted);
  background: transparent;
}

/* PRODUCTS */
.products {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.products-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 56px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.product-card:hover {
  border-color: var(--gold);
}
.product-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, var(--surface) 60%);
}
.product-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.product-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.product-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

/* APPROACH */
.approach {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.approach .section-label {
  margin-bottom: 48px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.approach-step {}
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-dim);
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 48px; }
  .credentials { padding: 32px 24px; }
  .credentials-inner { flex-direction: column; align-items: flex-start; }
  .products { padding: 64px 24px; }
  .approach { padding: 64px 24px; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
}