/* === BASE === */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --dark: #0D1B2A;
  --dark-mid: #1B2E4B;
  --accent: #E8735A;
  --accent-warm: #F4A96A;
  --muted: #7B8FA8;
  --text: #2C3E50;
  --text-light: #5A6B7A;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { 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: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 169, 106, 0.1);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0D1B2A 0%, #1B2E4B 55%, #2D4A6B 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-moon {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 106, 0.3) 0%, rgba(244, 169, 106, 0.08) 40%, transparent 70%);
  filter: blur(2px);
}

.hero-stars {
  position: absolute;
  inset: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.6);
}
.star:nth-child(1) { top: 12%; left: 15%; width: 1px; height: 1px; }
.star:nth-child(2) { top: 20%; left: 28%; width: 1.5px; height: 1.5px; opacity: 0.7; }
.star:nth-child(3) { top: 8%; left: 42%; width: 1px; height: 1px; }
.star:nth-child(4) { top: 18%; left: 62%; width: 1px; height: 1px; opacity: 0.5; }
.star:nth-child(5) { top: 5%; left: 75%; width: 2px; height: 2px; }
.star:nth-child(6) { top: 28%; left: 82%; width: 1px; height: 1px; opacity: 0.4; }
.star:nth-child(7) { top: 14%; left: 90%; width: 1.5px; height: 1.5px; }
.star:nth-child(8) { top: 32%; left: 8%; width: 1px; height: 1px; opacity: 0.6; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  max-width: 780px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-lede {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(250, 247, 242, 0.75);
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-moon-scene {
  opacity: 0.7;
}

.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 169, 106, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--accent-warm);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.45);
  max-width: 180px;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(244, 169, 106, 0.2);
  align-self: center;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(13, 27, 42, 0.06);
}

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

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.manifesto-headline {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--dark);
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

/* === APPROACH === */
.approach {
  padding: 6rem 1.5rem;
  background: var(--bg);
}

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

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

.approach-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.07);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.approach-icon {
  margin-bottom: 1.5rem;
}

.approach-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.approach-card-body {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === WHY === */
.why {
  padding: 6rem 1.5rem;
  background: var(--dark);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why .section-title { color: var(--bg); }

.why-body {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-stat {}

.why-stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.why-stat-desc {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.45);
}

.why-quote-block {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(244, 169, 106, 0.4);
}

.why-quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.why-quote {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.why-cite {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.4);
  font-style: normal;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 6rem 1.5rem;
  background: var(--bg-alt);
}

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

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

.philosophy-card {
  background: var(--bg);
  border: 1px solid rgba(13, 27, 42, 0.08);
  padding: 2rem;
  position: relative;
}

.philosophy-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(13, 27, 42, 0.06);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  line-height: 1;
}

.philosophy-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.philosophy-card-body {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 7rem 1.5rem;
  background: linear-gradient(160deg, #0D1B2A 0%, #1B2E4B 100%);
  text-align: center;
}

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

.closing-badge {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 3rem 1.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(244, 169, 106, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.4);
  font-weight: 300;
}

.footer-meta {
  text-align: right;
}

.footer-location {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 0.4rem;
}

.footer-built {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.3);
}

.footer-built a {
  color: rgba(244, 169, 106, 0.6);
  text-decoration: none;
}

.footer-built a:hover {
  color: var(--accent-warm);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .approach-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stat-row { flex-direction: column; gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 5rem; }
  .approach-card { padding: 1.75rem; }
  .philosophy-card { padding: 1.5rem; }
}