:root {
  --bg: #0A0A0F;
  --bg-card: #111118;
  --bg-card-2: #18181F;
  --fg: #F5F0E8;
  --fg-muted: #8A8680;
  --accent: #D4A847;
  --accent-dim: rgba(212, 168, 71, 0.12);
  --accent-border: rgba(212, 168, 71, 0.25);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-mark { color: var(--accent); font-size: 1.25rem; line-height: 1; }
.brand-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--fg);
}
.brand-supply { color: var(--accent); }
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  align-items: center;
  padding: 4rem 3rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-product-feature {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}
.hero-product-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.featured-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.featured-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.featured-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.featured-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.featured-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
}
.buy-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #0A0A0F;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.buy-now-btn:hover {
  background: #e8bc58;
  transform: translateY(-1px);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 380px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateX(-4px);
  border-color: var(--accent-border);
}
.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}
.card-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.card-product {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.card-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 3rem;
  align-items: center;
}
.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 200px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}
.manifesto-rule {
  width: 1px;
  height: 120px;
  background: var(--accent-border);
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.manifesto-body p {
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.7;
  font-weight: 400;
}
.manifesto-body p:first-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── PRODUCTS ─── */
.products {
  padding: 6rem 3rem;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.2;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product-item {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s ease;
}
.product-item:hover {
  background: var(--bg-card-2);
}
.product-icon {
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.product-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.product-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 3rem;
}
.philosophy-quote {
  max-width: 700px;
  margin: 0 auto 5rem;
  text-align: center;
}
.philosophy-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.philosophy-attribute {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pillar-mark {
  color: var(--accent);
  font-size: 0.8rem;
}
.pillar h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}
.pillar p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-mark {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.closing-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.footer-meta {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.5;
  letter-spacing: 0.08em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  .hero-visual { justify-content: flex-start; }
  .product-stack { max-width: 100%; }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .manifesto-rule { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
  .products { padding: 4rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .philosophy { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
  .stat-number { font-size: 2.8rem; }
}