/* ============================================================
   THE CONSCIOUS EXCHANGE — Shared site styles
   ============================================================ */
:root {
  --ink:        #14140F;
  --ink-soft:   #2A2A24;
  --bone:       #F5F1E8;
  --bone-warm:  #EDE6D3;
  --paper:      #FAF7EF;
  --rule:       #C9C2AE;
  --muted:      #6B6555;

  /* Refined brand tones (for text & accents) */
  --c-orange:   #E8893A;
  --c-green:    #5E8C4A;
  --c-magenta:  #C4407A;
  --c-blue:     #3A7AA8;
  --c-purple:   #6B4A8C;
  --c-gold:     #B89456;

  /* Bold logo tones (for imagery & graphic elements) */
  --logo-yellow:  #FFD23F;
  --logo-orange:  #F47B3D;
  --logo-pink:    #E8459C;
  --logo-blue:    #3FA5DC;
  --logo-green:   #7CC242;
  --logo-purple:  #9A4A9C;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, sans-serif;
  --max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--bone); }

/* ============================================================
   GRAIN OVERLAY — site-wide paper texture for warmth & depth
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(20, 20, 15, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--bone);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img.logo-image {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.logo-mark { display: inline-flex; gap: 2px; align-items: flex-end; }
.logo-mark span {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block;
}
.logo-mark span:nth-child(1) { background: var(--c-orange); }
.logo-mark span:nth-child(2) { background: var(--c-green); height: 9px; }
.logo-mark span:nth-child(3) { background: var(--c-magenta); }
.logo-mark span:nth-child(4) { background: var(--c-blue); height: 9px; }
.logo-mark span:nth-child(5) { background: var(--c-purple); }

.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-cta {
  background: var(--bone); color: var(--ink);
  padding: 10px 20px; border-radius: 100px;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: white; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--bone); cursor: pointer; font-size: 18px; }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   PAGE HEAD — with layered abstract chromatic field
   ============================================================ */
.page-head {
  background: var(--ink);
  color: var(--bone);
  padding: 180px 32px 100px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute;
  top: -10%; right: -15%;
  width: 900px; height: 900px;
  background:
    radial-gradient(circle at 30% 40%, rgba(232, 137, 58, 0.32) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(196, 64, 122, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(107, 74, 140, 0.18) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
}
.page-head::after {
  content: ''; position: absolute;
  bottom: -30%; left: -15%;
  width: 700px; height: 700px;
  background:
    radial-gradient(circle at 50% 50%, rgba(58, 122, 168, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 30% 30%, rgba(94, 140, 74, 0.12) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.page-head-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}
.page-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--c-orange); }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.page-head h1 em { font-style: italic; color: var(--c-orange); }
.page-head-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245,241,232,0.78);
  max-width: 480px;
}
@media (max-width: 860px) {
  .page-head { padding: 130px 24px 70px; }
  .page-head-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-head h1 { font-size: 52px; }
}

/* ============ shared eyebrow on light bg ============ */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--ink); }

/* ============ buttons ============ */
.btn-primary, .btn-ghost {
  padding: 16px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-primary.light { background: var(--bone); color: var(--ink); }
.btn-primary.light:hover { background: white; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-ghost.light { color: var(--bone); border-color: rgba(245,241,232,0.3); }
.btn-ghost.light:hover { border-color: var(--bone); background: rgba(245,241,232,0.05); }

/* ============================================================
   ABSTRACT SVG MARKS — positional helpers
   ============================================================ */
.abstract-mark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 32px 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background:
    radial-gradient(circle, rgba(232, 137, 58, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(196, 64, 122, 0.05) 0%, transparent 60%);
  filter: blur(40px);
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,241,232,0.1);
  position: relative; z-index: 2;
}
.foot-brand h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 16px;
}
.foot-brand p {
  font-size: 14px;
  color: rgba(245,241,232,0.6);
  line-height: 1.6;
  max-width: 360px;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: rgba(245,241,232,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--c-orange); }
.foot-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(245,241,232,0.4);
  position: relative; z-index: 2;
}
@media (max-width: 860px) {
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ============ generic section helpers ============ */
.section { padding: 120px 32px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
@media (max-width: 860px) { .section { padding: 70px 24px; } }

/* ============ CTA band ============ */
.cta-band {
  background: var(--bone);
  padding: 130px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107, 74, 140, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(232, 137, 58, 0.12) 0%, transparent 50%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-band-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 24px;
}
.cta-band h2 em { font-style: italic; color: var(--c-purple); }
.cta-band p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 860px) { .cta-band { padding: 80px 24px; } }
