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

:root {
  --bg: #0b0d14;
  --bg-warm: #100f0b;
  --surface: #151720;
  --surface-2: #1e202d;
  --text: #ede8df;
  --text-muted: #8a8378;
  --text-dim: #4a4740;
  --gold: #c8a96e;
  --gold-dim: rgba(200, 169, 110, 0.12);
  --divider: rgba(200, 169, 110, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* === NAVIGATION === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(60, 50, 30, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(200, 169, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.07);
  background: transparent;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 25%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.05);
  background: transparent;
}

.hero-eyebrow {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.hero-headline {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2.2rem;
}

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

.hero-sub {
  position: relative;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.hero-stats {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--divider);
}

.hero-stat {}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

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

/* === WHAT WE DO === */
.what-we-do {
  padding: 7rem 3rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.what-we-do-body {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.diff-card {
  background: var(--bg-warm);
  padding: 2.5rem 2rem;
}

.diff-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
  width: 24px;
  height: 24px;
}

.diff-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.diff-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* === PILLARS === */
.pillars {
  padding: 7rem 3rem;
  background: var(--bg);
}

.pillars-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.pillars-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.pillars-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.pillar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pillar-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--divider);
  border-radius: 2rem;
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: default;
}

.pillar-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.philosophy-quote-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.philosophy-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  text-align: center;
  max-width: 700px;
  flex-shrink: 0;
}

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

.philosophy-pillar {}

.phil-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.philosophy-pillar h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.philosophy-pillar p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 3rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.manifesto-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 4rem;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--divider);
  border: 1px solid var(--divider);
  margin-bottom: 4rem;
}

.manifesto-block {
  background: var(--surface);
  padding: 2rem 1.5rem;
}

.manifesto-block h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.manifesto-block p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.manifesto-vision {
  padding: 2.5rem 3rem;
  border: 1px solid var(--divider);
  background: var(--surface);
}

.manifesto-vision p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--divider);
}

.footer-inner {
  padding: 4rem 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.footer-meta p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 400px;
  text-align: right;
}

.footer-bottom {
  padding: 1.2rem 3rem;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .pillars-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-pillars-grid { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .what-we-do { padding: 5rem 1.5rem; }
  .pillars { padding: 5rem 1.5rem; }
  .philosophy { padding: 5rem 1.5rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 3rem; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .philosophy-quote-wrap { flex-direction: column; gap: 1rem; }
  .philosophy-line { display: none; }
}
