/* =========================================================
   The Next Chapter Connect — Premium Editorial Landing Page
   ========================================================= */

:root {
  --bg-dark: #0B0B0B;
  --bg-light: #F4EFE6;
  --bg-light-2: #EEE7D9;
  --accent: #C6A15B;
  --accent-soft: rgba(198, 161, 91, 0.14);
  --text-light: #F5F2EA;
  --text-dark: #171717;
  --muted: #9C978F;
  --muted-on-dark: #9C978F;
  --border-on-dark: rgba(245, 242, 234, 0.12);
  --border-on-light: rgba(23, 23, 23, 0.1);

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1200px;
  --reading-width: 700px;

  --space-section: clamp(72px, 11vw, 140px);
  --space-gutter: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--text-dark);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
}

.container--narrow {
  max-width: 820px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  min-height: 44px;
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

.btn--gold {
  background: var(--accent);
  color: #171717;
}
.btn--gold:hover { background: #d4b06f; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--text-dark);
}
.btn--outline:hover { background: var(--accent-soft); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .btn { width: 100%; }
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-on-dark);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: var(--text-light);
}

.navbar__logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--text-light);
  white-space: nowrap;
}
.navbar__logo span { color: var(--accent); }

.navbar__nav {
  display: none;
  gap: 32px;
}
.navbar__nav a {
  font-size: 0.88rem;
  color: var(--muted-on-dark);
  transition: color 0.25s var(--ease);
}
.navbar__nav a:hover { color: var(--text-light); }

.navbar__cta { display: none; }

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-on-dark);
}
.drawer nav {
  display: flex;
  flex-direction: column;
  padding: 8px var(--space-gutter) 28px;
}
.drawer nav a {
  padding: 14px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-on-dark);
  font-size: 1rem;
}
.drawer nav a:last-child {
  border-bottom: none;
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 900px) {
  .navbar__nav { display: flex; }
  .navbar__cta { display: inline-flex; }
  .navbar__toggle { display: none; }
  .drawer { display: none !important; }
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section {
  padding: var(--space-section) 0;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section--dark .muted,
.section--dark p { color: var(--text-light); }
.section--tint {
  background: var(--bg-light-2);
}

.section__heading {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  max-width: 820px;
}
.section__heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__intro { max-width: 760px; margin-bottom: 56px; }
.section__lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: var(--reading-width);
}
.section__lede--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  padding: 140px 0 96px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__motif {
  width: 100%;
  height: 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__headline {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  color: var(--text-light);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted-on-dark);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero__actions { margin-bottom: 24px; }

.hero__reassurance {
  font-size: 0.9rem;
  color: var(--muted-on-dark);
  letter-spacing: 0.01em;
}

/* =========================================================
   REALITY MIRROR
   ========================================================= */

.reality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-on-dark);
  border: 1px solid var(--border-on-dark);
  margin-top: 48px;
}

.reality-card {
  background: var(--bg-dark);
  margin: 0;
  padding: 40px 32px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--text-light);
}

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

/* =========================================================
   KNOWLEDGE CAPITAL REFRAME
   ========================================================= */

.reframe {
  display: grid;
  gap: 56px;
}

.reframe__copy p { font-size: 1.05rem; max-width: var(--reading-width); }
.reframe__emphasis {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text-dark);
}
.reframe__question {
  font-size: 1.15rem;
}
.reframe__question em { font-style: italic; color: var(--accent); }

.reframe__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 40px 24px;
  background: var(--bg-light-2);
  border: 1px solid var(--border-on-light);
}

.flow-step {
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-on-light);
}
.flow-step--gold {
  background: var(--bg-dark);
  border-color: var(--accent);
}
.flow-step--gold .flow-step__label { color: var(--accent); font-family: var(--font-head); font-size: 1.15rem; }
.flow-step__label { font-weight: 600; font-size: 0.95rem; }

.flow-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  margin: 4px 0;
}

.flow-possibilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.flow-possibilities span {
  font-size: 0.82rem;
  padding: 8px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-on-light);
  color: var(--text-dark);
}

@media (min-width: 900px) {
  .reframe { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* =========================================================
   FRAMEWORK (What is TNCC)
   ========================================================= */

.framework {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.framework__step {
  position: relative;
  padding-left: 60px;
}
.framework__num {
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--accent);
}
.framework__step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.framework__step p { color: var(--muted); max-width: 360px; }

@media (min-width: 780px) {
  .framework { grid-template-columns: repeat(4, 1fr); position: relative; }
  .framework::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, var(--border-on-light), var(--accent), var(--border-on-light));
  }
  .framework__step { padding-left: 0; padding-top: 48px; }
  .framework__num { left: 0; top: 0; }
}

/* =========================================================
   TRANSFORMATION
   ========================================================= */

.transform {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.transform__col {
  padding: 40px 32px;
  border: 1px solid var(--border-on-dark);
}
.transform__col--gold {
  border-color: var(--accent);
  background: rgba(198, 161, 91, 0.06);
}

.transform__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 20px;
}
.transform__col--gold .transform__label { color: var(--accent); }

.transform__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text-light);
}

.transform__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}
@media (min-width: 860px) {
  .transform { grid-template-columns: 1fr auto 1fr; }
  .transform__arrow { transform: none; }
}

.transform__note {
  margin-top: 32px;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  max-width: var(--reading-width);
}

/* =========================================================
   FIVE CONVERSATIONS
   ========================================================= */

.conv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-on-light);
  border: 1px solid var(--border-on-light);
  margin-top: 48px;
}

.conv-card {
  background: var(--bg-light);
  padding: 40px 32px;
}
.conv-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.conv-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.conv-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (min-width: 700px) {
  .conv-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1050px) {
  .conv-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   PHILOSOPHY
   ========================================================= */

.principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--text-dark);
}
.principles__dot { color: var(--accent); font-size: 0.8rem; }

/* =========================================================
   AUDIENCE / WHO IT'S FOR
   ========================================================= */

.check-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 720px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.02rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: transparent;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 11.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.not-for {
  margin-top: 64px;
  padding: 36px 32px;
  background: var(--bg-light-2);
  border-left: 3px solid var(--muted);
  max-width: 720px;
}
.not-for h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.cross-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* =========================================================
   FOUNDER
   ========================================================= */

.founder-quote {
  margin: 40px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.founder-quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  line-height: 1.6;
}
.founder-quote__highlight {
  color: var(--accent) !important;
  font-style: normal !important;
}

.founder-cta { margin-top: 44px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 32px;
}
.steps__item {
  padding: 40px 32px;
  background: var(--bg-light);
  border: 1px solid var(--border-on-light);
}
.steps__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.steps__item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.steps__item p { color: var(--muted); margin: 0; max-width: 480px; }

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.mid-cta {
  margin-top: 56px;
  text-align: center;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.accordion {
  margin-top: 40px;
  border-top: 1px solid var(--border-on-light);
}
.accordion__item {
  border-bottom: 1px solid var(--border-on-light);
}
.accordion__item h3 { margin: 0; font-family: var(--font-body); }

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 44px;
}
.accordion__trigger::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.accordion__trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.accordion__panel > p {
  overflow: hidden;
  min-height: 0;
  color: var(--muted);
  padding-right: 40px;
  margin: 0;
}
.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}
.accordion__item.is-open .accordion__panel > p {
  padding-bottom: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .accordion__panel { transition: none; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-section) 0;
  text-align: center;
}
.final-cta__headline {
  color: var(--text-light);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.final-cta__copy {
  color: var(--muted-on-dark);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.final-cta__reassurance {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--muted-on-dark);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--bg-dark);
  color: var(--muted-on-dark);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border-on-dark);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.footer__mission {
  max-width: 420px;
  font-size: 0.92rem;
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.footer__links a:hover { color: var(--text-light); }
.footer__copyright {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(156, 151, 143, 0.7);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
}

@media (min-width: 700px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
