:root {
  --cream: #f5f0e8;
  --forest: #1a3d2e;
  --forest-light: #2a5c44;
  --gold: #c9a84c;
  --charcoal: #1c1c1e;
  --muted: #6b6b6b;
  --border: #e0d8c8;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* Nav */
.nav {
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: 0 48px;
  padding-top: 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, transparent, rgba(201, 168, 76, 0.08));
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.4;
}

/* Philosophy */
.philosophy {
  padding: 100px 48px;
  background: var(--cream);
}
.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.philosophy-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 48px;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.3;
  max-width: 760px;
  margin-bottom: 48px;
}
.philosophy-body {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.philosophy-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
}

/* Spaces */
.spaces {
  padding: 100px 48px;
  background: var(--white);
}
.spaces-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
}
.space-card {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.space-card--hero {
  grid-column: span 2;
}
.space-card--tall {
  grid-row: span 2;
}
.space-card-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.space-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}
.space-card-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.space-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
}

/* Membership */
.membership {
  padding: 100px 48px;
  background: var(--cream);
}
.membership-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.member-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.member-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.member-tier {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: inherit;
}
.member-tagline {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.member-card--featured .member-tagline {
  color: rgba(245, 240, 232, 0.6);
}
.member-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.member-features li {
  font-size: 15px;
  line-height: 1.4;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.member-card--featured .member-features li {
  color: rgba(245, 240, 232, 0.85);
}
.member-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.member-card--featured .member-features li::before {
  background: var(--gold);
}

/* Investor */
.investor {
  padding: 100px 48px;
  background: var(--forest);
  color: var(--cream);
}
.investor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.investor-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.investor-ring-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.investor-ring-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.investor-ring-sub {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.5;
  margin-top: 4px;
}
.investor-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.investor-text .section-heading {
  color: var(--cream);
}
.investor-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
}
.manifesto-num-label {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  line-height: 1.3;
  margin-top: -8px;
}
.manifesto-col--right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}
.manifesto-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--white);
}
.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--forest);
  color: var(--cream);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
}
.footer-location {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
}
.footer-note {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { flex-direction: row; border: none; background: none; padding: 0; gap: 40px; }
  .investor-inner { grid-template-columns: 1fr; }
  .investor-ring { margin: 0 auto; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .space-card--hero { grid-column: span 2; }
  .membership-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 80px 24px 60px; }
  .philosophy, .spaces, .membership, .investor, .manifesto, .closing { padding: 60px 24px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .space-card--hero, .space-card--tall { grid-column: auto; grid-row: auto; }
  .hero-aside { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; }
}