/* GENIUSISM™ site styles */
:root {
  --ink: #12151a;
  --ink-soft: #3c434e;
  --ink-faint: #6b7280;
  --paper: #faf8f4;
  --paper-deep: #f1ede5;
  --line: #e2ddd2;
  --accent: #1d4fd8;
  --accent-deep: #16367f;
  --accent-wash: #e8edfb;
  --gold: #b98a2f;
  --max: 1080px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: var(--max); margin: 0 auto;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem; font-weight: 640; color: var(--ink);
  letter-spacing: 0.01em;
}
.brand:hover { text-decoration: none; }
.brand .tm { font-size: 0.55em; vertical-align: super; color: var(--ink-faint); }
nav.links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
nav.links a { color: var(--ink-soft); font-size: 0.93rem; font-weight: 500; }
nav.links a:hover { color: var(--ink); text-decoration: none; }
nav.links a.active { color: var(--accent-deep); }
nav.links a.cta {
  background: var(--ink); color: var(--paper);
  padding: 9px 18px; border-radius: 100px; font-weight: 600;
}
nav.links a.cta:hover { background: var(--accent-deep); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; }
.hero .kicker, .kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 650; color: var(--gold); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); max-width: 17ch; }
.hero .lede, .lede {
  margin-top: 26px; font-size: 1.22rem; color: var(--ink-soft);
  max-width: 58ch; line-height: 1.6;
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 100px;
  font-weight: 600; font-size: 0.98rem; transition: all 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--accent-deep); }
.btn.ghost { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn.ghost:hover { border-color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 68px 0; }
section.tint { background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.dark { background: var(--ink); color: var(--paper); }
section.dark h2, section.dark h3 { color: var(--paper); }
section.dark p { color: #c9cdd4; }
section.dark .kicker { color: #d9b25f; }

h2.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); max-width: 24ch; margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); max-width: 62ch; font-size: 1.06rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; margin-top: 44px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: #fffdf9; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.99rem; }
.card .num {
  font-family: "Fraunces", Georgia, serif; font-size: 0.9rem; font-weight: 650;
  color: var(--gold); letter-spacing: 0.12em; margin-bottom: 14px; display: block;
}
.card.link-card { transition: all 0.15s ease; display: block; color: inherit; }
.card.link-card:hover { text-decoration: none; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(18,21,26,0.07); }
.card.link-card .go { color: var(--accent); font-weight: 600; font-size: 0.94rem; margin-top: 16px; display: inline-block; }

section.dark .card { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.13); }
section.dark .card p { color: #b9bec7; }

/* ---------- Prose / statements ---------- */
.statement {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem); line-height: 1.35; font-weight: 500;
  max-width: 26ch;
}
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.1em; }
.prose h3 { margin: 2em 0 0.6em; font-size: 1.3rem; }

blockquote.pull {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 26px; margin: 36px 0;
  font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; line-height: 1.45;
  color: var(--ink);
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Definition list ---------- */
.deflist { margin-top: 36px; border-top: 1px solid var(--line); }
.defrow { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.defrow dt { font-weight: 650; font-size: 1.03rem; }
.defrow dd p { color: var(--ink-soft); font-size: 0.99rem; }
@media (max-width: 720px) { .defrow { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Forms ---------- */
form.contact { max-width: 560px; margin-top: 36px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 0.98rem; background: #fffdf9; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
form.contact button {
  border: none; cursor: pointer; font: inherit;
}
.hidden-field { display: none; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink); color: #9aa1ab; padding: 56px 0 44px; font-size: 0.88rem;
}
footer.site .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { footer.site .wrap { grid-template-columns: 1fr; } }
footer.site .brand { color: var(--paper); font-size: 1.2rem; display: block; margin-bottom: 14px; }
footer.site a { color: #c5cad2; }
footer.site h4 { color: var(--paper); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 650; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 9px; }
footer.site .legal { margin-top: 20px; line-height: 1.7; max-width: 60ch; }

/* ---------- Notice band ---------- */
.notice {
  font-size: 0.85rem; color: var(--ink-faint); border-top: 1px solid var(--line);
  padding: 22px 0; text-align: center;
}
