:root {
  --bg: #14181F;
  --bg-raised: #171C24;
  --cream: #F5E9D4;
  --cream-muted: rgba(245, 233, 212, 0.72);
  --cream-dim: rgba(245, 233, 212, 0.62);
  --cream-faint: rgba(245, 233, 212, 0.45);
  --cream-ghost: rgba(245, 233, 212, 0.12);
  --amber: #EFA64A;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
}

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

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 0.5px solid var(--cream-ghost);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { width: 44px; height: 44px; }
.nav-logo-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--cream-muted);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-size: 12px;
  color: var(--bg);
  background: var(--amber);
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.9; }

@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 96px 40px 72px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg);
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.15s ease;
}
.btn-primary:hover { opacity: 0.92; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 14px 26px;
  font-size: 13px;
  border: 0.5px solid rgba(245, 233, 212, 0.3);
  letter-spacing: 0.04em;
  transition: border-color 0.15s ease;
}
.btn-ghost:hover { border-color: rgba(245, 233, 212, 0.6); }

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 24px 40px;
  border-top: 0.5px solid var(--cream-ghost);
  border-bottom: 0.5px solid var(--cream-ghost);
  display: flex;
  justify-content: center;
  gap: 56px;
  font-size: 11px;
  color: rgba(245, 233, 212, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
}
.marquee span { display: flex; align-items: center; gap: 14px; }
.marquee .dot { width: 4px; height: 4px; background: var(--amber); }

/* ---------- SECTION ---------- */
.section {
  padding: 88px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--cream);
}

.section-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 460px;
  margin: 0 auto;
}

/* ---------- PILLARS ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245, 233, 212, 0.1);
  border: 0.5px solid rgba(245, 233, 212, 0.1);
}

.pillar {
  background: var(--bg-raised);
  padding: 40px 32px;
}

.pillar-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--cream);
  line-height: 1.2;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  font-size: 14px;
  color: rgba(245, 233, 212, 0.82);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--amber);
  margin-top: 9px;
  flex-shrink: 0;
}

.feature-list .ft-title {
  display: block;
  color: var(--cream);
}

.feature-list .ft-desc {
  display: block;
  color: rgba(245, 233, 212, 0.5);
  font-size: 13px;
  margin-top: 3px;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .pillar-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
  background: var(--bg-raised);
  padding: 72px 48px;
  text-align: center;
  border: 0.5px solid rgba(245, 233, 212, 0.1);
  max-width: 760px;
  margin: 0 auto;
}

.philosophy p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy p:last-child { margin-bottom: 0; }
.philosophy p em { font-style: italic; color: var(--amber); }

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 80px 40px;
  text-align: center;
  background: var(--amber);
  color: var(--bg);
  margin: 0 40px 40px;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--bg);
  line-height: 1.1;
}

.cta-band p {
  font-size: 16px;
  color: rgba(20, 24, 31, 0.8);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.cta-band button {
  background: var(--bg);
  color: var(--cream);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}
.cta-band button:hover { opacity: 0.9; }

@media (max-width: 720px) {
  .cta-band { margin: 0 0 40px; }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--cream-ghost);
  font-size: 11px;
  color: var(--cream-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .hero { padding: 64px 24px 48px; }
  .section { padding: 64px 24px; }
  .philosophy { padding: 48px 28px; }
  .pillar { padding: 32px 24px; }
  .cta-band { padding: 56px 24px; }
  .footer { padding: 24px; }
}


img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 0.5px solid var(--cream-ghost);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { width: 44px; height: 44px; }
.nav-logo-text { font-size: 15px; font-weight: 500; letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--cream-muted);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-size: 12px;
  color: var(--bg);
  background: var(--amber);
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.9; }

@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ---------- PAGE LAYOUT ---------- */
.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--cream);
}
.page-title em { font-style: italic; color: var(--amber); }

.page-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-muted);
  margin-bottom: 48px;
  max-width: 560px;
}

/* ---------- STATUS MESSAGES ---------- */
.status {
  padding: 18px 22px;
  margin-bottom: 32px;
  border: 0.5px solid var(--cream-ghost);
  font-size: 14px;
  line-height: 1.55;
}
.status.ok {
  border-color: var(--amber);
  background: rgba(239, 166, 74, 0.08);
  color: var(--cream);
}
.status.error {
  border-color: rgba(255, 120, 120, 0.4);
  background: rgba(255, 120, 120, 0.06);
  color: var(--cream);
}
.status-title {
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--cream);
}
.status-body { color: var(--cream-muted); }

/* ---------- FORM ---------- */
.form { display: flex; flex-direction: column; gap: 24px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

.field input,
.field textarea {
  background: var(--bg-raised);
  border: 0.5px solid var(--cream-ghost);
  color: var(--cream);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--cream-faint);
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

/* Honeypot — hidden from humans, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.submit-btn {
  background: var(--amber);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s ease;
}
.submit-btn:hover { opacity: 0.92; }

.submit-note {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--cream-ghost);
  font-size: 11px;
  color: var(--cream-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .page { padding: 48px 24px 72px; }
  .footer { padding: 24px; }
}