/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg: #0d0d14;
  --bg-2: #111120;
  --surface: #16162a;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --text: #f0ede8;
  --text-2: #8a8fa8;
  --text-3: #555872;
  --border: rgba(240, 237, 232, 0.07);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245, 166, 35, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245, 166, 35, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 540px;
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* Stat row */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.4;
  max-width: 120px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── BELIEF ──────────────────────────────────────────────────── */
.belief {
  padding: 120px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.belief-inner {
  max-width: 760px;
}

.belief-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 32px;
}

.belief-statement {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 40px;
  font-style: normal;
  border: none;
}

.belief-body {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 620px;
}

/* ─── PILLARS ────────────────────────────────────────────────── */
.pillars {
  padding: 120px 80px;
}

.pillars-header {
  margin-bottom: 72px;
}

.pillars-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
}

.pillar-card {
  padding: 40px 36px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.pillar-card:last-child { border-right: none; }

.pillar-card:hover { background: var(--surface); }

.pillar-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pillar-name {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products {
  padding: 100px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-inner { max-width: 1000px; }

.products-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}

.products-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.product-item {
  padding: 20px 24px;
  background: var(--bg);
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.product-item:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

/* ─── CLOSING ────────────────────────────────────────────────── */
.closing {
  padding: 140px 80px;
}

.closing-inner { max-width: 860px; }

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}

.closing-statement {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  border: none;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 60px 80px;
  border-top: 1px solid var(--border);
}

.footer-inner { display: flex; flex-direction: column; gap: 8px; }

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-3);
  font-style: italic;
  margin-top: 16px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero, .belief, .pillars, .products, .closing, .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stat-divider { display: none; }
  .stat-label { max-width: none; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; border-bottom: 1px solid var(--border); }

  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero, .belief, .pillars, .products, .closing, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .products-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.6rem; }
}