:root {
  --bg-deep: #08080a;
  --bg-section: #0e0e11;
  --bg-card: #16161a;
  --fg: #ddd8ce;
  --fg-muted: #8a857b;
  --accent: #c9a74c;
  --accent-dim: #a08530;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,167,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0c0b0e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}

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

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll-line {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--accent-dim));
  animation: pulse-line 2.5s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== APPROACH ===== */
.approach {
  padding: 7rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid rgba(201,167,76,0.08);
}

.approach-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.approach-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1.5rem;
}

.approach h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 4rem;
  max-width: 700px;
}

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

.approach-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.approach-card:hover {
  border-color: rgba(201,167,76,0.2);
}

.approach-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}

.approach-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

.pillars-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pillar {
  flex: 1;
  padding: 0 2.5rem;
  text-align: center;
}

.pillar-divider {
  width: 1px;
  min-height: 160px;
  background: linear-gradient(180deg, transparent, var(--accent-dim), transparent);
  flex-shrink: 0;
  align-self: stretch;
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-section);
  text-align: center;
  border-top: 1px solid rgba(201,167,76,0.08);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.closing-attr {
  font-size: 0.8rem;
  color: var(--accent-dim);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.closing-statement {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.closing-tagline {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pillars-inner {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .pillar {
    padding: 0 1rem;
  }

  .pillar-divider {
    width: 60px;
    min-height: 1px;
    height: 1px;
  }

  .approach,
  .pillars,
  .closing {
    padding: 4rem 1.5rem;
  }

  .hero {
    min-height: 90vh;
  }
}