/* Talent Concepts — private preview site */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2332;
  --navy-soft: #2e3d55;
  --rust: #c45a3c;
  --rust-dark: #a84a30;
  --cream: #f7f5f0;
  --surface: #ffffff;
  --ink: #2c2c2c;
  --ink-soft: #5f5a54;
  --ink-faint: #918a83;
  --border: #e2ddd5;
  --good: #2d6a4f;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); }

.container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.wordmark { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; }
.wordmark .dot { color: var(--rust); }
.preview-chip {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rust); border: 1px solid var(--rust); border-radius: 999px;
  padding: 0.2rem 0.65rem; margin-left: 0.75rem; vertical-align: 2px;
  display: inline-block;
}
.site-nav { display: flex; gap: 1.4rem; align-items: center; }
.site-nav a { font-size: 0.85rem; color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--navy); }
.site-nav .nav-cta {
  background: var(--rust); color: #fff; padding: 0.45rem 1rem; border-radius: 6px;
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--rust-dark); color: #fff; }
@media (max-width: 760px) { .site-nav a:not(.nav-cta) { display: none; } }

/* ── Hero ── */
.hero { padding: 5rem 0 4.5rem; }
.hero .eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.15; max-width: 20ch;
  text-wrap: balance; margin-bottom: 1.25rem;
}
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; margin-bottom: 2rem; }
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; font-size: 0.95rem;
  font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* ── Sections ── */
section { padding: 4rem 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 0.75rem;
}
section h2 { font-size: 1.8rem; margin-bottom: 1rem; text-wrap: balance; max-width: 30ch; }
.section-intro { color: var(--ink-soft); max-width: 66ch; margin-bottom: 2.25rem; font-size: 1.02rem; }

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem 1.4rem;
}
section.alt .card { background: var(--cream); }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ── Steps (Builder) ── */
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 1rem; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 1.1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step .num {
  counter-increment: step; width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); max-width: 62ch; }
.step .quote { font-style: italic; color: var(--navy-soft); }

.callout {
  background: var(--navy); color: #e8e4dd; border-radius: 10px;
  padding: 1.75rem 2rem; margin-top: 2.25rem;
}
.callout h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.5rem; }
.callout p { font-size: 0.95rem; max-width: 70ch; }
.callout .rust { color: #e8977e; font-weight: 600; }

/* ── Two-column ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ── Module chips ── */
.module-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.module-chips span {
  font-size: 0.78rem; font-weight: 600; color: var(--navy-soft);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.3rem 0.8rem;
}
section.alt .module-chips span { background: var(--cream); }

/* ── Lists ── */
.check-list { list-style: none; display: grid; gap: 0.7rem; margin-top: 0.5rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.check-list li::before {
  content: ''; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px;
  border-radius: 50%; background: var(--good);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 70% no-repeat, linear-gradient(#000 0 0);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 70% no-repeat;
  background-color: var(--good);
}

/* ── Forms ── */
form.lead-form { display: grid; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { font-size: 0.8rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%; padding: 0.65rem 0.8rem; font-size: 0.95rem; font-family: inherit;
  border: 1px solid var(--border); border-radius: 6px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--rust); outline-offset: 1px; border-color: var(--rust); }
textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); }
.form-status { font-size: 0.9rem; font-weight: 600; min-height: 1.4rem; }
.form-status.ok { color: var(--good); }
.form-status.err { color: #b3402a; }

/* ── Papers ── */
.paper-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.paper-card .tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.paper-card h3 { font-size: 1.05rem; }
.paper-card p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; }
.paper-links { display: none; }
.paper-links.revealed { display: grid; gap: 0.75rem; }
.paper-links a { color: var(--rust); font-weight: 600; font-size: 0.95rem; }

/* ── Calendly ── */
.calendly-wrap {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
.calendly-wrap iframe { display: block; width: 100%; height: 700px; border: 0; }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 0 3rem; }
.site-footer p { font-size: 0.82rem; color: var(--ink-faint); max-width: 78ch; margin-bottom: 0.6rem; }
.site-footer .heritage { color: var(--ink-soft); }
