/* ─── Clarity + Culture Co — Shared Styles ─── */
:root {
  --black: #000000;
  --white: #ffffff;
  --green: #00ff80;
  --gray-soft: #f4f4f2;
  --gray-mid: #6b6b6b;
  --gray-line: #d8d8d4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.oswald { font-family: 'Oswald', sans-serif; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 2rem; }

/* ─── NAV ─── */
nav.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--gray-line);
}
nav.site .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem; max-width: 1400px; margin: 0 auto;
}
nav.site .logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
nav.site .logo .plus { color: var(--green); margin: 0 0.2em; }
nav.site ul {
  list-style: none; display: flex; gap: 2rem; align-items: center;
}
nav.site ul a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
  font-family: 'Oswald', sans-serif;
}
nav.site ul a:hover { opacity: 0.55; }
nav.site ul a.active { color: var(--black); border-bottom: 2px solid var(--green); padding-bottom: 0.2em; }
nav.site .cta {
  border: 2px solid var(--black);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  background: var(--black);
  color: var(--white) !important;
}
nav.site .cta:hover { background: var(--green); color: var(--black) !important; border-color: var(--green); opacity: 1 !important; }
@media (max-width: 1100px) {
  nav.site ul { gap: 1.2rem; }
  nav.site ul a { font-size: 0.85rem; }
}
@media (max-width: 880px) {
  nav.site ul { display: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.4rem;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn-outline {
  background: transparent;
  color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-light { border-color: var(--white); background: var(--white); color: var(--black); }
.btn-light:hover { background: var(--green); border-color: var(--green); color: var(--black); }

/* ─── COMMON LABELS / HEADINGS ─── */
.label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
  display: block;
}
.label.on-dark { color: var(--green); }
.label.on-green { color: var(--black); }

/* ─── HERO ─── */
section.hero {
  padding: 7rem 0 8rem;
  background: var(--white);
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 18ch;
}
.hero h1 .accent {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.05em;
  text-decoration-skip-ink: none;
}
.hero h1 em {
  font-style: normal;
  background: var(--green);
  display: inline-block;
  padding: 0.08em 0.22em 0.15em;
  line-height: 0.82;
  vertical-align: baseline;
}
.hero .sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--black);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  line-height: 1.25;
}
.hero .lead {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 36rem;
  margin-bottom: 3rem;
  line-height: 1.65;
}

/* Compact hero variant for subpages */
section.hero-compact {
  padding: 6rem 0 5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.hero-compact h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 20ch;
}
.hero-compact h1 em {
  font-style: normal;
  background: var(--green);
  display: inline-block;
  padding: 0 0.22em 0.22em;
  line-height: 1;
  vertical-align: baseline;
}
.hero-compact .sub {
  font-size: 1.2rem;
  color: var(--gray-mid);
  max-width: 38rem;
  line-height: 1.6;
}

/* ─── DIAGNOSTIC (5 dimensions) ─── */
section.diagnostic {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.diagnostic .header { max-width: 50rem; margin-bottom: 4rem; }
.diagnostic h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  color: var(--black);
  letter-spacing: -0.01em;
}
.diagnostic h2 em {
  font-style: normal;
  background: var(--green);
  display: inline-block;
  padding: 0 0.22em 0.22em;
  line-height: 1;
  vertical-align: baseline;
}
.dim-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
@media (max-width: 980px) { .dim-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dim-grid { grid-template-columns: 1fr; } }
.dim-cell {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 2rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}
.dim-cell:hover { background: var(--green); }
.dim-cell .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.dim-cell h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.dim-cell p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ─── INTRO / PAIN BLOCK ─── */
section.intro {
  padding: 6rem 0;
  background: var(--white);
}
.intro h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1.4rem;
  max-width: 44rem;
}
.intro p em {
  font-style: normal;
  background: var(--green);
  display: inline-block;
  padding: 0 0.2em 0.22em;
  line-height: 1;
  vertical-align: baseline;
}
.intro p.pivot {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  margin: 2.5rem 0;
  letter-spacing: -0.005em;
}
.intro p.close {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 2.5rem;
  letter-spacing: 0.01em;
}

/* ─── SERVICES GRID 3x3 (homepage) ─── */
section.services {
  padding: 6rem 0 7rem;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
}
.services .header { max-width: 50rem; margin-bottom: 4rem; }
.services h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.services .sub {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 38rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 2.5rem 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  background: var(--white);
}
.svc:hover { background: var(--green); }
.svc h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.svc p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
}
.svc-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--black);
  transition: transform 0.25s;
}
.svc-cta svg {
  width: 42px;
  height: 42px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc:hover .svc-cta { transform: translateY(-2px); }
.center-btn { text-align: center; margin-top: 4rem; }

/* ─── STACKED DETAIL SECTIONS (subpages) ─── */
section.stacked {
  padding: 6rem 0;
  background: var(--white);
}
.stacked .section-header {
  max-width: 60rem;
  margin-bottom: 5rem;
}
.stacked .section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 20ch;
}
.stacked .section-header h2 em {
  font-style: normal;
  background: var(--green);
  display: inline-block;
  padding: 0 0.22em 0.22em;
  line-height: 1;
  vertical-align: baseline;
}
.engagement {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-line);
  align-items: start;
}
.engagement:first-of-type { border-top: 1px solid var(--gray-line); }
.engagement .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--black);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.engagement h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.engagement p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-mid);
  max-width: 48rem;
}
.engagement:hover .num { color: var(--gray-mid); }
@media (max-width: 720px) {
  .engagement { grid-template-columns: 1fr; gap: 0.8rem; padding: 2.2rem 0; }
  .engagement .num { font-size: 2.6rem; }
}

/* ─── CHECKLIST ─── */
section.checklist {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
}
.checklist h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  max-width: 24ch;
}
.checklist ul {
  list-style: none;
  border-top: 1px solid var(--black);
}
.checklist li {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  padding: 1.6rem 0 1.6rem 4rem;
  border-bottom: 1px solid var(--black);
  position: relative;
  transition: background 0.2s, padding-left 0.2s;
  line-height: 1.3;
}
.checklist li::before {
  content: "→";
  position: absolute;
  left: 0.5rem;
  top: 1.6rem;
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 200;
  transition: color 0.2s, transform 0.2s;
}
.checklist li:hover { background: var(--green); padding-left: 4.4rem; }
.checklist li:hover::before { transform: translateX(0.4rem); }

/* ─── GREEN CALLOUT ─── */
section.green-call {
  padding: 8rem 0;
  background: var(--green);
  color: var(--black);
}
.green-call h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.green-call p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 42rem;
  margin-bottom: 1.4rem;
}
.green-call p strong {
  font-weight: 700;
  border-bottom: 3px solid var(--black);
}

/* Soft green for placeholder messages (lighter feel) */
section.green-soft {
  padding: 6rem 0;
  background: var(--green);
  color: var(--black);
}
.green-soft .small-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: block;
}
.green-soft p {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  max-width: 46rem;
  letter-spacing: -0.005em;
}

/* ─── PROCESS ─── */
section.process {
  padding: 7rem 0;
  background: var(--black);
  color: var(--white);
}
.process h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.process .sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 36rem;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 2.2rem 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.step .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.step h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ─── TESTIMONIAL ─── */
section.testimonial {
  padding: 8rem 0;
  background: var(--green);
  color: var(--black);
}
.testimonial blockquote {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.25;
  color: var(--black);
  max-width: 52rem;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.testimonial cite {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── ABOUT ─── */
section.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gray-soft) 0%, #e2e2dc 100%);
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.about h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--black);
}
.about h2 .accent {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.05em;
  text-decoration-skip-ink: none;
}
.about p {
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 1.4rem;
  line-height: 1.7;
}
.about p.lead {
  font-weight: 600;
  font-size: 1.15rem;
}

/* ─── FINAL CTA ─── */
section.final-cta {
  padding: 9rem 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.final-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 .accent {
  background: var(--green);
  color: var(--black);
  display: inline-block;
  padding: 0 0.2em 0.22em;
  line-height: 1;
  vertical-align: baseline;
}
.final-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
  margin: 0 auto 3rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
footer .brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 600;
}
footer .brand .plus { color: var(--green); }
footer p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 22rem; }
footer h4 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--green); }
footer .copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
