/* ============================================================
   cindytests.com — Global Stylesheet
   Source of truth: SITE-DESIGN-SYSTEM.md
   Last built: July 28, 2026
   Rules: no px except 0.5px borders · no hardcoded colors ·
          all spacing in rem · p { margin: 0 } intentional
   ============================================================ */


/* ============ RESET ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
p { margin: 0; }  /* Intentional — kill browser default paragraph margins */
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }


/* ============ CSS VARIABLES ============ */
:root {
  /* Fonts */
  --serif: 'Lora', Georgia, serif;
  --sans:  'DM Sans', -apple-system, sans-serif;
  --mono:  'Anonymous Pro', 'Courier New', monospace;

  /* Ground */
  --bg:      #000000;   /* Page background — true black */
  --bg-w:    #0E0E0C;   /* Surface */
  --bg-deep: #111110;   /* Cards, content areas */
  --bdr:     #242420;   /* Dividers */
  --bdr-lt:  #1C1C1A;   /* Subtle dividers */

  /* Type */
  --tp:      #F5F2EC;   /* Primary — cream */
  --ts:      #B8B6AF;   /* Secondary — body text */
  --ts-lt:   #7A7874;   /* Dimmed secondary — Signals observation body */
  --tm:      #6A6860;   /* Muted — labels, meta */

  /* Brand green */
  --gr:      #3A6B52;   /* Wordmark, kickers */
  --gr-lt:   #6FA88A;   /* Accents, eyebrows */
  --gr-bg:   #1E3028;   /* Tag backgrounds */

  /* Terracotta — CTA only */
  --tc:      #A8522A;   /* Buttons, nav contact */
  --tc-lt:   #C88060;   /* Pills, outlines */
  --tc-bg:   #1A0E08;   /* Conversion block background */
  --tc-hov:  #8F4422;   /* Button hover state */

  /* Accent */
  --red:     #EC0404;   /* Red customers card bottom line only */

  /* Layout */
  --inset: 4rem;
}


/* ============ BODY ============ */
body {
  background: var(--bg);
  color: var(--tp);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--bdr);
}
.nav-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--tp);
}
.nav-logo img {
  width: 2rem;
  height: 2rem;
}
.nav-logo .tests {
  color: var(--gr-lt);
  font-style: italic;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.8125rem;
  color: var(--ts);
}
.nav-links a {
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--tp);
}
.nav-links a.active {
  color: var(--gr-lt);
}
.nav-contact {
  font-size: 0.8125rem;
  color: var(--tc-lt);
  transition: color 0.15s;
}
.nav-contact:hover {
  color: var(--tc);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--tp);
  font-size: 1.375rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 47.5rem) {
  .nav-right { gap: 0.75rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-inner.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--bdr);
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
    z-index: 200;
  }
}


/* ============ FOOTER ============ */
.footer {
  border-top: 0.5px solid var(--bdr);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--tm);
}
.footer-wordmark .tests {
  color: var(--gr);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--tm);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--gr-lt);
}

@media (max-width: 47.5rem) {
  .footer-inner { padding-left: 0; }
}


/* ============ BUTTONS ============ */
.btn-pri {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  background: var(--tc);
  color: var(--tp);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s;
}
.btn-pri:hover {
  background: var(--tc-hov);
}
.btn-sec {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--ts);
  border: 0.5px solid var(--bdr);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.18s, color 0.18s;
}
.btn-sec:hover {
  border-color: var(--gr);
  color: var(--gr-lt);
}


/* ============ EYEBROW LABEL ============ */
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.25rem;
}


/* ============ PAGE HEADER (interior pages) ============ */
.page-header {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem 1.5rem;
}
.page-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.page-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--tp);
  margin-bottom: 1.25rem;
}
.page-intro {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 35rem;
}

@media (max-width: 47.5rem) {
  .page-header { padding-left: 1.5rem; }
}


/* ============ PULL QUOTE ============ */
.pull-quote {
  border-left: 0.125rem solid var(--gr);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  color: var(--tp);
  line-height: 1.65;
  margin: 0;
}


/* ============ CARDS ============ */
/* Four illusions cards + ways to work together cards */
.card {
  background: var(--bg-deep);
  border: 0.5px solid var(--bdr);
  border-top: 0.125rem solid var(--tc);
  border-radius: 0.5rem;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}
.card-top {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 0;
}
.card-divider {
  width: 2rem;
  height: 0.09375rem;
  background: var(--tc);
  margin: 0.625rem auto;
  flex-shrink: 0;
}
.card-bottom {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--gr-lt);
  margin-bottom: 0.75rem;
}
.card-bottom.red {
  color: var(--red);
}
.card-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.6;
}


/* ============ CREDENTIALS STRIP ============ */
.cred-strip {
  background: var(--bg-deep);
  border-top: 0.5px solid var(--bdr);
  border-bottom: 0.5px solid var(--bdr);
  padding: 2rem 0;
}
.cred-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 0 calc(1.5rem + var(--inset));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cred-item {}
.cred-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr-lt);
  margin-bottom: 0.375rem;
}
.cred-headline {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.cred-sub {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--ts);
  line-height: 1.5;
}

@media (max-width: 47.5rem) {
  .cred-inner {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
  }
}


/* ============ SIGNALS OBSERVATIONS ============ */
/* signals.html only */
.obs-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 35rem;
}
.obs {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.gr-mark {
  width: 0.125rem;
  height: 1.5rem;
  background: var(--gr-lt);
  border-radius: 0.0625rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.obs-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.obs-sub {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ts-lt);
  line-height: 1.6;
}


/* ============ WRITING PAGE — ACCORDION ============ */
.sections-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem 1.5rem;
}
.write-section {
  margin-bottom: 3.5rem;
}
.write-section-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.625rem;
}
.write-section-head img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.write-section-name {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--tp);
}
.write-section-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--ts);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: calc(2.5rem + 0.875rem);
}
.accordion-item {
  border: 0.5px solid var(--bdr);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-deep);
  transition: border-color 0.18s;
}
.accordion-item.open {
  border-color: var(--gr);
}
.accordion-item.upcoming {
  opacity: 0.6;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: inherit;
  color: var(--tp);
}
.accordion-item.upcoming .accordion-trigger {
  cursor: default;
}
.accordion-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.accordion-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.35;
}
.accordion-sub {
  font-size: 0.75rem;
  color: var(--tm);
}
.accordion-icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gr-lt);
  transition: transform 0.25s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
.accordion-pill {
  font-size: 0.5625rem;
  padding: 0.1875rem 0.625rem;
  border-radius: 6.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bdr-lt);
  color: var(--tm);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content-inner {
  padding: 0 1.5rem 1.75rem;
  border-top: 0.5px solid var(--bdr-lt);
}
.post-body {
  font-size: 0.875rem;
  color: var(--ts);
  line-height: 1.85;
  padding-top: 1.5rem;
}
.post-body p {
  margin-bottom: 1.1rem;
}
.post-body p:last-child {
  margin-bottom: 0;
}
.post-body blockquote {
  border-left: 0.125rem solid var(--gr);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--tp);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.post-body h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tp);
  margin: 1.5rem 0 0.75rem;
}
.post-body img {
  border-radius: 0.375rem;
  border: 0.5px solid var(--bdr);
  margin: 1.25rem 0;
  max-width: 100%;
}
.post-body .img-caption {
  font-size: 0.6875rem;
  color: var(--tm);
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}
.post-body .img-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  align-items: flex-start;
}
.post-body .img-row > div {
  flex: 1;
  min-width: 0;
}
.post-body .img-row img {
  width: 100%;
  margin: 0 0 0.5rem;
  display: block;
}
.post-body .img-row .img-caption {
  margin-top: 0;
}
.post-attribution {
  font-size: 0.6875rem;
  color: var(--tm);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 0.5px solid var(--bdr-lt);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post-attribution .note-label {
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.author-note {
  font-size: 0.75rem;
  color: var(--ts);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 47.5rem) {
  .sections-wrap { padding-left: 1.5rem; }
  .accordion-title { font-size: 1rem; }
  .write-section-desc { padding-left: 0; }
}


/* ============ CONTACT FORM ============ */
.form-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 5rem 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-deep);
  border: 0.5px solid var(--bdr);
  border-radius: 0.625rem;
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
  margin-top: 1.75rem;
}
.contact-card-eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-card-headline {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.contact-card-intro {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 0;
}
.contact-card-main {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 1.5rem;
}
.contact-card-reassurance {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 1.25rem;
}
.contact-perspective {
  margin-top: 1.5rem;
  color: var(--gr-lt);
  font-family: var(--mono);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm);
  font-weight: 500;
}
.field input,
.field textarea {
  background: var(--bg-w);
  border: 0.5px solid var(--bdr);
  border-radius: 0.375rem;
  padding: 0.875rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--tp);
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--tm);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gr);
}
.field textarea {
  resize: vertical;
  min-height: 10rem;
  line-height: 1.7;
}
.field-honey { display: none; }
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-submit {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  background: var(--tc);
  color: var(--tp);
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--tc-hov);
}
.form-note {
  font-size: 0.6875rem;
  color: var(--tm);
  line-height: 1.6;
}
.form-message {
  padding: 0.875rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  display: none;
  margin-bottom: 1rem;
}
.form-message.success {
  background: var(--gr-bg);
  border: 0.5px solid var(--gr);
  color: var(--gr-lt);
  display: block;
}
.form-message.error {
  background: var(--tc-bg);
  border: 0.5px solid var(--tc);
  color: var(--tc-lt);
  display: block;
}

@media (max-width: 47.5rem) {
  .form-wrap { padding-left: 1.5rem; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-card {
    position: static;
    margin-top: 0;
  }
}


/* ============ ABOUT PAGE ============ */
.about-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 0 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 4rem;
  align-items: start;
}
.about-left {}
.about-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--tp);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.about-photo {
  border-radius: 0.5rem;
  filter: brightness(0.95);
  width: 100%;
  position: sticky;
  top: 6rem;
}
.about-right {}
.bio-block {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
}
.bio-block p + p {
  margin-top: 1.25rem;
}
.bio-three {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 1.5rem;
}
.bio-three p {
  margin-top: 0.625rem;
}
.bio-three p:first-child {
  margin-top: 0;
}
.bio-translation {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 1.5rem;
}
.bio-translation p {
  margin-top: 0.5rem;
}
.bio-translation p:first-child {
  margin-top: 0;
}
.bio-closer {
  font-family: var(--serif);
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-top: 1.5rem;
}
.bio-closer-muted {
  color: var(--ts);
  font-weight: 300;
}
.bio-closer-muted p + p {
  margin-top: 0;
}
.bio-closer-gap {
  margin-top: 1.25rem;
}
.bio-closer-strong {
  color: var(--tp);
  font-weight: 500;
}
.bio-closer-strong p + p {
  margin-top: 0;
}
.signals-link-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--bdr);
}
.signals-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.625rem;
  text-decoration: none;
}
.signals-link-label {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gr-lt);
  line-height: 1;
}
.signals-link-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--tm);
  font-weight: 300;
}

@media (max-width: 47.5rem) {
  .about-wrap { padding-left: 1.5rem; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-left {
    display: flex;
    flex-direction: column;
  }
  .about-name {
    order: 2;
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .about-photo {
    order: 1;
    position: static;
  }
}


/* ============ INDEX — HERO ============ */
.hero {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.hero-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--tp);
  margin-bottom: 2rem;
}
.hero-h1 .italic-line {
  font-style: italic;
  color: var(--gr-lt);
  display: block;
}
.hero-body {
  font-size: 1.0625rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 35rem;
}
.hero-body p + p {
  margin-top: 1.25rem;
}

@media (max-width: 47.5rem) {
  .hero { padding-left: 1.5rem; padding-top: 3rem; }
}


/* ============ INDEX — FOUR CARDS ============ */
.cards-section {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 56.25rem) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 35rem) {
  .cards-grid { grid-template-columns: 1fr; }
}

.cards-cta {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 0 1.5rem;
}
.cards-cta-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1rem;
}
.cards-cta-body {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 37.5rem;
  margin-bottom: 1.75rem;
}
.cards-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 47.5rem) {
  .cards-section { padding-left: 1.5rem; }
  .cards-cta { padding-left: 1.5rem; }
}


/* ============ INDEX — WHY THIS HAPPENS ============ */
.why-section {
  background: var(--bg-deep);
  padding: 4rem 0;
  margin-top: 4rem;
}
.why-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 0 calc(1.5rem + var(--inset));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-left {}
.why-right {}
.why-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 2rem;
}
.why-lines {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
}
.why-lines p {
  margin-top: 0;
}
.why-lines p + p {
  margin-top: 0.875rem;
}
.why-lines strong {
  color: var(--tp);
  font-weight: 500;
}

@media (max-width: 47.5rem) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 1.5rem;
  }
}


/* ============ INDEX — WHAT I DO ============ */
.what-section {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.what-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.what-h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1.5rem;
}
.what-body {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 37.5rem;
}
.what-body p + p {
  margin-top: 1.25rem;
}
.what-body strong {
  color: var(--tp);
  font-weight: 500;
  display: block;
}
.what-closer {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-top: 1.5rem;
  max-width: 37.5rem;
}

@media (max-width: 47.5rem) {
  .what-section { padding-left: 1.5rem; }
}


/* ============ INDEX — WAYS TO WORK TOGETHER ============ */
.ways-section {
  background: var(--bg-deep);
  padding: 4rem 0;
}
.ways-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 0 calc(1.5rem + var(--inset));
}
.ways-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 2rem;
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ways-card {
  background: var(--bg-deep);
  border: 0.5px solid var(--bdr);
  border-top: 0.125rem solid var(--tc);
  border-radius: 0.5rem;
  padding: 1.75rem 1.25rem 1.5rem;
}
.ways-card-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 0.75rem;
}
.ways-card-body {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--tm);
  line-height: 1.65;
}

@media (max-width: 47.5rem) {
  .ways-inner { padding-left: 1.5rem; }
  .ways-grid { grid-template-columns: 1fr; }
}


/* ============ INDEX — WRITING SECTION ============ */
.writing-section {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.writing-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.writing-h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1rem;
}
.writing-body {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 35rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 47.5rem) {
  .writing-section { padding-left: 1.5rem; }
}


/* ============ INDEX — FINAL CTA ============ */
.final-cta {
  background: var(--tc-bg);
  border-top: 0.5px solid var(--tc);
  padding: 4rem 0;
}
.final-cta-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 0 calc(1.5rem + var(--inset));
}
.final-cta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tc-lt);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.final-cta-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1.75rem;
  max-width: 37.5rem;
  line-height: 1.35;
}

@media (max-width: 47.5rem) {
  .final-cta-inner { padding-left: 1.5rem; }
}


/* ============ SIGNALS PAGE ============ */
.signals-body-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem 1.5rem;
}
.signals-obs-section {
  margin-bottom: 4rem;
}
.signals-obs-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.cta-block {
  padding-top: 3rem;
  border-top: 0.5px solid var(--bdr);
}
.cta-text {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 35rem;
}
.cta-text p + p {
  margin-top: 0.875rem;
}

/* Signals page intro paragraphs */
.signals-intro p + p {
  margin-top: 1rem;
}
.signals-intro .intro-direct {
  color: var(--tp);
}

/* Speaking page intro — wider than default 560px */
.page-intro-wide {
  max-width: 37.5rem;
}

@media (max-width: 47.5rem) {
  .signals-body-wrap { padding-left: 1.5rem; }
}


/* ============ SPEAKING PAGE ============ */
.speaking-wrap {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem 5rem 1.5rem;
}
.presentations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.pres-card {
  background: var(--bg-deep);
  border: 0.5px solid var(--bdr);
  border-top: 0.125rem solid var(--tc);
  border-radius: 0.5rem;
  padding: 1.75rem 1.25rem 1.5rem;
}
.pres-audience {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.pres-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tp);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.pres-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ts);
  line-height: 1.65;
}
.workshops-section {
  margin-bottom: 3rem;
}
.speaking-section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.workshop-item {
  border-top: 0.5px solid var(--bdr);
  padding: 1.5rem 0;
}
.workshop-item:last-child {
  border-bottom: 0.5px solid var(--bdr);
}
.workshop-title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 0.375rem;
}
.workshop-format {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tm);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.workshop-desc {
  font-size: 0.875rem;
  color: var(--ts);
  line-height: 1.75;
  max-width: 37.5rem;
}
.workshop-desc p + p {
  margin-top: 0.875rem;
}
.engagements-section {
  margin-bottom: 3rem;
}
.engagements-table {
  width: 100%;
  border-collapse: collapse;
}
.engagements-table th {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm);
  font-weight: 500;
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--bdr);
}
.engagements-table td {
  font-size: 0.875rem;
  color: var(--ts);
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--bdr-lt);
  vertical-align: top;
}
.engagements-table td:first-child {
  color: var(--tp);
  font-weight: 400;
  padding-right: 2rem;
}
.speaking-cta {
  background: var(--bg-deep);
  border: 0.5px solid var(--bdr);
  border-top: 0.125rem solid var(--tc);
  border-radius: 0.5rem;
  padding: 2.5rem;
  margin-top: 1rem;
}
.speaking-cta-label {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gr-lt);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.speaking-cta-headline {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 47.5rem) {
  .speaking-wrap { padding-left: 1.5rem; }
  .presentations-grid {
    grid-template-columns: 1fr;
  }
}


/* ============ 404 PAGE ============ */
.not-found {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 8rem 1.5rem;
  min-height: 60vh;
}
.not-found-code {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--gr-lt);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.not-found-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--tp);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.not-found-body {
  font-size: 0.9375rem;
  color: var(--ts);
  line-height: 1.85;
  max-width: 30rem;
  margin-bottom: 2rem;
}

@media (max-width: 47.5rem) {
  .not-found { padding-left: 1.5rem; }
}
