:root {
  --bg: #0d0b09;
  --bg-raised: #141210;
  --bg-card: #1a1814;
  --fg: #f0ebe2;
  --fg-muted: #8a8278;
  --fg-faint: #4a4540;
  --gold: #c9a96e;
  --gold-dim: #7a6442;
  --border: #252019;
  --border-light: #2e2920;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 36px 80px;
  border-bottom: 1px solid var(--border);
}
.nav-mark {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--fg);
}
.nav-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  min-height: 86vh;
  border-bottom: 1px solid var(--border);
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-portrait img.loaded { opacity: 1; }
.hero-portrait-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1610 0%, #0d0b09 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
}
.wax-seal {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
}
.wax-seal svg { width: 48px; height: 48px; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 80px 80px 72px;
}
.hero-eyebrow {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 40px;
}
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-cta-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.hero-cta-form {
  display: flex;
  gap: 0;
  max-width: 400px;
}
.hero-cta-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.8rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.03em;
}
.hero-cta-input::placeholder { color: var(--fg-faint); }
.hero-cta-input:focus { border-color: var(--gold-dim); }
.hero-cta-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-cta-btn:hover { background: #d4b882; }
.hero-cta-note {
  font-size: 0.78rem;
  color: var(--fg-faint);
  font-style: italic;
}

/* ─── SECTION SHARED ───────────────────────────────────────── */
.section-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 40px;
}
.section-label::before {
  content: '— ';
  color: var(--fg-faint);
}

/* ─── THE POSITION ──────────────────────────────────────────── */
.position {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.position-inner { max-width: 800px; }
.position-header { margin-bottom: 56px; }
.position-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.position-heading span { color: var(--gold); font-style: italic; }
.position-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
}
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--border);
}
.position-card {
  background: var(--bg-raised);
  padding: 40px 36px;
}
.position-card h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.position-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── VENDORS ──────────────────────────────────────────────── */
.vendors {
  padding: 80px 80px;
  border-bottom: 1px solid var(--border);
}
.vendors-inner { max-width: 900px; }
.vendors-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 48px;
}
.vendors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
}
.vendor-item {
  flex: 1 1 calc(14.28% - 1px);
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--fg-faint);
  transition: color 0.25s ease, background 0.25s ease;
}
.vendor-item:nth-child(7n) { border-right: none; }
.vendor-item:nth-last-child(-n+7) { border-bottom: none; }
.vendor-item:hover {
  color: var(--gold);
  background: var(--bg-card);
}
.vendor-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: color 0.25s ease;
}
.vendor-mark svg { width: 100%; height: 100%; }
.vendor-name {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  transition: color 0.25s ease;
}

@media (max-width: 768px) {
  .vendors { padding: 60px 28px; }
  .vendors-label { font-size: 0.6rem; letter-spacing: 0.2em; margin-bottom: 36px; }
  .vendor-item { flex: 1 1 calc(25% - 1px); min-width: 70px; padding: 20px 12px; gap: 10px; }
  .vendor-item:nth-child(7n) { border-right: 1px solid var(--border); }
  .vendor-item:nth-child(4n) { border-right: none; }
  .vendor-item:nth-last-child(-n+4) { border-bottom: none; }
}

/* ─── FEELING ──────────────────────────────────────────────── */
.feeling {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.feeling-quote-block {
  position: relative;
  margin-bottom: 72px;
  padding: 0 40px;
}
.open-quote, .close-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 7rem;
  color: var(--border-light);
  position: absolute;
  line-height: 1;
}
.open-quote { top: -16px; left: 0; }
.close-quote { bottom: -48px; right: 40px; }
.feeling-quote-block blockquote {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.feeling-contrast {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
}
.feeling-col {
  flex: 1;
  padding: 40px 36px;
}
.feeling-col-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 16px;
}
.feeling-col p {
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--fg-muted);
}
.feeling-col--new {
  background: var(--bg-card);
}
.feeling-col--new p { color: var(--fg); }
.feeling-divider { width: 1px; background: var(--border); }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how {
  background: var(--bg-raised);
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.how .section-label { color: var(--gold-dim); }
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  padding-top: 6px;
  min-width: 32px;
}
.how-step-content h3 {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.how-step-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}
.how-note {
  margin-top: 48px;
}
.how-note p {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}

/* ─── WHO IT'S FOR ─────────────────────────────────────────── */
.audience {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.audience-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.audience-heading {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.audience-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
}
.audience-list { list-style: none; }
.audience-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  line-height: 1.5;
}
.audience-list li::before {
  content: '— ';
  color: var(--gold-dim);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.7rem;
}
.audience-list li:last-child { border-bottom: none; }

/* ─── JOIN THE LIST ─────────────────────────────────────────── */
.join {
  padding: 120px 80px;
  text-align: center;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.join-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.join-heading em { color: var(--gold); font-style: italic; }
.join-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.join-form {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.join-input {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.8rem;
  padding: 16px 20px;
  outline: none;
  width: 340px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
}
.join-input::placeholder { color: var(--fg-faint); }
.join-input:focus { border-color: var(--gold-dim); }
.join-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.join-btn:hover { background: #d4b882; }
.join-note {
  font-size: 0.75rem;
  color: var(--fg-faint);
  font-style: italic;
}

/* ─── CLOSING ──────────────────────────────────────────────── */
.closing {
  padding: 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing-text {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--fg);
  font-style: italic;
  line-height: 1.5;
  max-width: 480px;
}
.closing-sig {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.sig-dash {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--fg-faint);
}
.sig-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.sig-title {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 6px;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 80px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--fg-muted);
}
.footer-meta {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 300px 1fr; }
  .hero-content { padding: 60px 48px 60px 48px; }
}
@media (max-width: 768px) {
  .nav { padding: 24px 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-portrait { height: 360px; }
  .hero-content { padding: 48px 28px; }
  .position { padding: 64px 28px; }
  .position-grid { grid-template-columns: 1fr; }
  .feeling { padding: 64px 28px; }
  .feeling-quote-block { padding: 0; }
  .open-quote, .close-quote { font-size: 5rem; }
  .close-quote { right: 0; }
  .feeling-contrast { flex-direction: column; }
  .feeling-divider { width: 100%; height: 1px; }
  .how { padding: 64px 28px; }
  .how-step { gap: 24px; padding: 36px 0; }
  .audience { padding: 64px 28px; }
  .audience-inner { grid-template-columns: 1fr; gap: 40px; }
  .join { padding: 80px 28px; }
  .join-form { flex-direction: column; align-items: center; }
  .join-input { width: 100%; max-width: 360px; border-right: 1px solid var(--border-light); border-bottom: none; }
  .join-btn { width: 100%; max-width: 360px; }
  .closing { padding: 60px 28px; flex-direction: column; align-items: flex-start; }
  .closing-sig { align-items: flex-start; }
  .footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}