/* engagedlab site v4 — lime edition */
/* ============================================================
   engaged.lab — brand stylesheet
   Warm White #FDFAF5 · Warm Cream #EDE8DF · Coral #FF5942
   Near Black #141412 · Warm Grey #5A5A54 · Deep Coral #E4572E
   Type: Cormorant Garamond (display) · DM Sans (body)
   ============================================================ */

:root {
  --warm-white: #FDFAF5;
  --warm-cream: #EDE8DF;
  --coral: #FF5942;
  --deep-coral: #E4572E;
  --lime: #B2F040;
  --near-black: #141412;
  --warm-grey: #5A5A54;
  --hairline: rgba(20, 20, 18, 0.12);
  --max-w: 1140px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--warm-white);
  color: var(--near-black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--lime); color: var(--near-black); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

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

/* ---------- type roles ---------- */

h1, h2, h3.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }

.coral-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.1rem;
}

.body-grey { color: var(--warm-grey); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn-coral, .btn-dark, .btn-white {
  background: var(--lime); color: var(--near-black);
}
.btn-coral:hover, .btn-dark:hover, .btn-white:hover {
  background: var(--near-black); color: var(--lime); transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--near-black);
  box-shadow: inset 0 0 0 1.5px var(--near-black);
}
.btn-ghost:hover { background: var(--lime); color: var(--near-black); box-shadow: inset 0 0 0 1.5px var(--near-black); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.logo { display: block; }
.logo img { height: 32px; width: auto; display: block; }
@media (max-width: 540px) { .logo img { height: 26px; } }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 400; color: var(--near-black);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--coral);
  transition: width 0.2s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--near-black); padding: 0.4rem;
}

/* ---------- hero ---------- */

.hero { padding: 5rem 0 5.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: center;
}
.hero h1 .line2 { display: block; }
.hero-lede { margin: 1.8rem 0 0.9rem; max-width: 34rem; }
.hero-sub { max-width: 34rem; }
.hero-cta { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.award {
  margin-top: 2.6rem; font-size: 0.85rem; color: var(--warm-grey);
  display: flex; align-items: center; gap: 0.6rem;
}
.award::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); flex: none;
}
.hero-photo {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 20, 18, 0.14);
  max-width: 420px; justify-self: end;
}
.hero-photo img { width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }

/* ---------- trusted strip ---------- */

.trusted {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.8rem 0;
  background: var(--warm-white);
}
.trusted .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem 2.4rem; justify-content: center;
  font-size: 0.9rem; color: var(--warm-grey);
}
.trusted .label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.trusted .client { font-weight: 400; color: var(--near-black); }
.trusted img.logo {
  height: 52px; width: auto;
  filter: grayscale(1); opacity: 0.72;
  transition: filter 0.18s ease, opacity 0.18s ease;
}
@media (max-width: 700px) { .trusted img.logo { height: 38px; } }
.trusted img.logo:hover { filter: none; opacity: 1; }
.trusted img.plogo { height: 44px; }
.trusted img.plogo[src*="dlit"] { height: 64px; }
.trusted img.plogo[src*="fearless"] { height: 56px; }

/* ---------- generic section ---------- */

.section { padding: 5.5rem 0; }
.section.cream { background: var(--warm-cream); }
.section-head { max-width: 44rem; margin-bottom: 3rem; }

/* ---------- symptoms ---------- */

.symptom-intro .line2 { display: block; }
.symptom-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-top: 2.6rem;
}
@media (max-width: 1000px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
.symptom-card {
  background: var(--warm-white);
  border-radius: 12px;
  border-top: 3px solid var(--coral);
  padding: 1.6rem 1.4rem;
}
.symptom-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.5rem; margin-bottom: 0.6rem;
}
.symptom-card p { font-size: 0.98rem; color: var(--warm-grey); }
.symptom-note {
  margin-top: 2.4rem; font-size: 1.05rem;
}

/* ---------- stats ---------- */

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: clamp(3rem, 5vw, 4.2rem);
  color: var(--coral); line-height: 1;
}
.stat p { margin-top: 0.7rem; font-size: 0.98rem; color: var(--warm-grey); max-width: 20rem; }

/* ---------- how i work ---------- */

.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.step { border-top: 1px solid var(--hairline); padding-top: 1.4rem; }
.step .num {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.14em; color: var(--coral);
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.45rem; margin: 0.5rem 0 0.5rem;
}
.step p { font-size: 0.95rem; color: var(--warm-grey); }

/* ---------- solutions ---------- */

.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.solution-card {
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 20, 18, 0.09);
}
.solution-card .tag {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--near-black);
  background: var(--lime); border-radius: 999px;
  padding: 0.35rem 0.85rem; width: fit-content;
}
.solution-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.7rem; line-height: 1.15;
}
.solution-card p { font-size: 0.98rem; color: var(--warm-grey); flex: 1; }
.solution-card .with { font-size: 0.85rem; color: var(--near-black); }
.solution-card .with em { font-style: normal; color: var(--coral); }

/* ---------- speaking ---------- */

.speaking-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
}
.speaking-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(20,20,18,0.16); }
.speaking-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.topics { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0 2rem; padding: 0; list-style: none; }
.topics li {
  font-size: 0.85rem; padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid var(--hairline); background: var(--warm-white);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.topics li:hover { background: var(--lime); border-color: var(--lime); }

/* ---------- big CTA ---------- */

.big-cta {
  background: var(--coral);
  color: var(--warm-white);
  padding: 5.5rem 0;
  text-align: center;
}
.big-cta h2 .line2 {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
}
.big-cta p { margin: 1.2rem auto 2.2rem; max-width: 28rem; opacity: 0.97; font-weight: 400; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--warm-cream); color: var(--near-black);
  border-top: 1px solid var(--hairline);
  padding: 3rem 0 2.4rem; font-size: 0.9rem;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand .muted, .footer-meta { color: var(--warm-grey); }
.footer-links { list-style: none; display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a:hover {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.footer-meta { width: 100%; margin-top: 2rem; font-size: 0.8rem; }

/* ---------- inner pages ---------- */

.page-hero { padding: 4.5rem 0 3rem; }
.page-hero h1 { max-width: 46rem; }
.page-hero .lede { margin-top: 1.4rem; max-width: 38rem; }

/* about */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem;
  align-items: start; padding: 4.5rem 0 5rem;
}
.about-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(20,20,18,0.14); position: sticky; top: 6rem; max-width: 440px; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
.about-copy h1 { margin-bottom: 2rem; }
.about-copy p { margin-bottom: 1.3rem; max-width: 36rem; }
.about-pull {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 1.7rem; line-height: 1.3; color: var(--coral);
  margin: 2.2rem 0;
}
.partners {
  border-top: 1px solid var(--hairline); margin-top: 2.6rem; padding-top: 1.8rem;
  font-size: 0.9rem; color: var(--warm-grey);
}
.partners .label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  display: block; margin-bottom: 0.5rem;
}

/* forms */
.form-card {
  background: var(--warm-white); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 2.4rem;
  max-width: 620px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem;
}
.field .req { color: var(--coral); }
.field input, .field textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 300;
  padding: 0.8rem 0.95rem; border: 1px solid var(--hairline); border-radius: 8px;
  background: var(--warm-white); color: var(--near-black);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 89, 66, 0.14);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--warm-grey); margin-top: 1rem; }

/* contact layout */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem;
  padding: 4.5rem 0 5.5rem; align-items: start;
}
.contact-aside p { margin: 1.2rem 0 1.8rem; max-width: 26rem; }
.contact-meta { margin-top: 2.4rem; font-size: 0.92rem; color: var(--warm-grey); line-height: 2; }
.contact-meta a:hover { color: var(--coral); }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; padding: 1rem 0 5rem; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.45rem;
  line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-size: 1.5rem; color: var(--coral); flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 1.8rem; color: var(--warm-grey); max-width: 44rem; }

/* self test */
.selftest-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem;
  padding: 4.5rem 0 5.5rem; align-items: start;
}
.selftest-copy p { margin-bottom: 1.3rem; max-width: 34rem; }
.selftest-note {
  border-left: 3px solid var(--coral);
  padding: 0.2rem 0 0.2rem 1.2rem;
  font-size: 0.92rem; color: var(--warm-grey); margin-top: 1.8rem;
}

/* success page */
.success-block { padding: 7rem 0 8rem; text-align: center; }
.success-block p { margin: 1.4rem auto 2.4rem; max-width: 30rem; color: var(--warm-grey); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid, .speaking-grid, .about-grid, .contact-grid, .selftest-grid {
    grid-template-columns: 1fr; gap: 2.6rem;
  }
  .hero { padding: 3.2rem 0 4rem; }
  .hero-photo { max-width: 420px; justify-self: start; }
  .about-photo { position: static; max-width: 480px; }
  .symptom-grid, .stats { grid-template-columns: 1fr; gap: 1.4rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column; align-items: flex-start;
    padding: 1.4rem 24px 1.8rem; gap: 1.3rem;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ---------- insights ---------- */
.insights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  padding-bottom: 2rem;
}
.insight-card {
  display: flex; flex-direction: column;
  background: #FFFFFF; border: 1px solid var(--hairline); border-radius: 12px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(20,20,18,0.10); }
.ic-img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--warm-cream); }
.ic-img img { width: 100%; height: 100%; object-fit: cover; }
.ic-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.ic-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-grey);
}
.insight-card h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.45rem; line-height: 1.2;
}
.ic-body p { font-size: 0.92rem; color: var(--warm-grey); flex: 1; }
.ic-read { font-size: 0.88rem; font-weight: 500; }
.insight-card:hover .ic-read {
  text-decoration: underline; text-decoration-color: var(--lime);
  text-decoration-thickness: 3px; text-underline-offset: 4px;
}

.insight-article { padding: 4rem 0 4.5rem; }
.insight-article .wrap { max-width: 760px; }
.insight-article h1 { margin: 0.6rem 0 2rem; }
.insight-hero { border-radius: 14px; overflow: hidden; margin-bottom: 2.5rem; }
.insight-hero img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; }
.prose p { margin-bottom: 1.25rem; }
.prose p.li { margin: 0 0 0.6rem 1rem; }
.prose h2 {
  font-size: 1.7rem; margin: 2.2rem 0 0.9rem;
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.35rem; margin: 1.8rem 0 0.7rem;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }

/* VR page banner */
.vr-banner { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(20,20,18,0.16); margin-bottom: 3rem; }
.vr-banner img { width: 100%; height: auto; display: block; }

/* About — on stage section */
.onstage-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(20,20,18,0.16); }
.onstage-photo img { width: 100%; height: auto; display: block; }
