:root {
  --navy:     #0D0F14;
  --charcoal: #13161D;
  --ivory:    #F5F0E6;
  --cream:   #EDE8DC;
  --gold:     #C9952A;
  --gold-lt:  #E2B94A;
  --muted:    #8B8578;
  --text:     #1A1A1A;
  --text-lt:  #F0EDE6;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 149, 42, 0.15);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.nav__logo-dot { color: var(--gold); }
.nav__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 40px 100px;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 149, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 149, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__chart-art {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
  pointer-events: none;
}
.chart-art__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 149, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 149, 42, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.chart-art__glow {
  position: absolute;
  bottom: 20%; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201, 149, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.chart-art__bar {
  position: absolute;
  bottom: 0;
  width: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 149, 42, 0.3) 100%);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
}
.chart-art__bar--1 { left: 15%; height: 35%; opacity: 0.5; }
.chart-art__bar--2 { left: calc(15% + 56px); height: 50%; opacity: 0.65; }
.chart-art__bar--3 { left: calc(15% + 112px); height: 68%; opacity: 0.78; }
.chart-art__bar--4 { left: calc(15% + 168px); height: 82%; opacity: 0.88; }
.chart-art__bar--5 { left: calc(15% + 224px); height: 100%; opacity: 1; }
.chart-art__line {
  position: absolute;
  bottom: 0;
  left: 12%;
  width: calc(76%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.6;
  transform: rotate(-8deg);
  transform-origin: left center;
}
.chart-art__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.chart-art__dot--1 { bottom: 65%; right: 22%; }
.chart-art__dot--2 { bottom: 80%; right: 14%; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.125rem;
  color: rgba(240, 237, 230, 0.65);
  line-height: 1.65;
  max-width: 520px;
  font-weight: 400;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--cream);
  padding: 100px 40px;
}
.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 48px;
}
.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 32px;
}
.manifesto__attribution {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}

/* ── OFFERINGS ── */
.offerings {
  background: var(--ivory);
  padding: 100px 40px;
}
.offerings__header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.offerings__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.offerings__subtitle {
  font-size: 1rem;
  color: var(--muted);
}
.offerings__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offering-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.offering-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 42, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 600;
}
.offering-card__badge--accent {
  color: var(--navy);
  border-color: rgba(13, 15, 20, 0.2);
}
.offering-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.offering-card__desc {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 28px;
}
.offering-card__list {
  list-style: none;
  margin-bottom: 28px;
}
.offering-card__list li {
  font-size: 0.875rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.offering-card__list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.offering-card__note {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ── PRINCIPLES ── */
.principles {
  background: var(--charcoal);
  padding: 100px 40px;
}
.principles__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.principles__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 540px;
}
.principles__body {
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.6);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.principle__icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.principle__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}
.principle__desc {
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.55);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ivory);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing__body {
  font-size: 1rem;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.7;
  margin-bottom: 56px;
}
.closing__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--ivory);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 48px 40px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__brand {}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}
.footer__logo-dot { color: var(--gold); }
.footer__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 6px;
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__link {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--text); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav__inner { padding: 14px 24px; }
  .nav__tagline { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero__chart-art { display: none; }
  .offerings__grid { grid-template-columns: 1fr; }
  .principles__grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto, .offerings, .principles, .closing { padding: 72px 24px; }
  .offering-card { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .footer__links { gap: 16px; }
}