/* ============================================================
   THE PEOPLE WORK COMPANY — Visual Identity 2026
   Stylesheet
   Fonts: Cormorant Garamond (display) + Inter (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Teal family */
  --forest-teal:  #12534C;
  --deep-forest:  #0D3B36;
  --fern:         #1E7A6E;
  --mist-teal:    #E4F0EE;

  /* Amber accent */
  --amber:        #C47A3A;
  --amber-mid:    #D4935A;
  --amber-light:  #F5E8D8;

  /* Neutrals */
  --ink:          #1C2B28;
  --slate:        #6B7A76;
  --stone:        #9B8B7A;
  --sand:         #F0EBE1;
  --mist:         #F8F6F3;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', Calibri, Arial, sans-serif;

  /* Spacing */
  --section-py:   100px;
  --section-py-sm: 64px;
  --container:    1160px;
  --container-narrow: 760px;

  /* Transitions */
  --transition: 0.22s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--forest-teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--fern);
}

ul, ol {
  list-style: none;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-py) 0;
}

.section--sm {
  padding: var(--section-py-sm) 0;
}

/* Section background variants */
.section--white  { background: var(--white); }
.section--mist   { background: var(--mist); }
.section--sand   { background: var(--sand); }
.section--teal   { background: var(--forest-teal); color: var(--white); }
.section--dark   { background: var(--deep-forest); color: var(--white); }
.section--amber  { background: var(--amber-light); }

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-italic {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 26px);
  line-height: 1.25;
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
}

.body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
}

.caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Color utilities */
.text-teal   { color: var(--forest-teal); }
.text-amber  { color: var(--amber); }
.text-slate  { color: var(--slate); }
.text-stone  { color: var(--stone); }
.text-white  { color: var(--white); }
.text-ink    { color: var(--ink); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--forest-teal);
  color: var(--white);
  border-color: var(--forest-teal);
}

.btn--primary:hover {
  background: var(--deep-forest);
  border-color: var(--deep-forest);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--forest-teal);
  border-color: var(--forest-teal);
}

.btn--secondary:hover {
  background: var(--forest-teal);
  color: var(--white);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.btn--amber:hover {
  background: var(--amber-mid);
  border-color: var(--amber-mid);
  color: var(--white);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ── Primary Rule (section opener) ───────────────────────── */
.rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--forest-teal);
  margin-bottom: 24px;
}

.rule--amber {
  background: var(--amber);
}

.rule--white {
  background: rgba(255,255,255,0.5);
}

.rule--sm {
  width: 32px;
  height: 2px;
}

/* ── Dividers ─────────────────────────────────────────────── */
hr.divider {
  border: none;
  border-top: 1px solid rgba(107, 122, 118, 0.2);
  margin: 48px 0;
}

hr.divider--teal {
  border-top-color: var(--mist-teal);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(28, 43, 40, 0.1);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  flex-shrink: 0;
  height: 36px;
}

.nav__logo img {
  height: 100%;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--forest-teal);
}

.nav--on-dark .nav__link {
  color: rgba(255,255,255,0.85);
}

.nav--on-dark .nav__link:hover,
.nav--on-dark .nav__link.active {
  color: var(--white);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav--on-dark .nav__toggle span {
  background: var(--white);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--white);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 99;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 18px;
  font-weight: 500;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--deep-forest) 0%,
    rgba(13, 59, 54, 0.88) 60%,
    rgba(18, 83, 76, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

/* Inner-page hero (shorter) */
.hero--page {
  min-height: 52vh;
}

/* Century Brief hero — darker, more editorial */
.hero--brief {
  min-height: 60vh;
  background: var(--ink);
}

.hero--brief .hero__overlay {
  background: linear-gradient(135deg, #0D1E1C 0%, #1C2B28 100%);
}

.hero__label {
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero__sub {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__tags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.hero__tag + .hero__tag::before {
  content: '·';
  margin-right: 16px;
  opacity: 0.4;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .rule {
  margin-left: auto;
  margin-right: auto;
}

.section-header__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
  margin-bottom: 16px;
}

.section--dark .section-header__label,
.section--teal .section-header__label {
  color: var(--mist-teal);
}

.section-header__title {
  margin-bottom: 16px;
}

.section-header__body {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.section-header--center .section-header__body {
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section-header__body,
.section--teal .section-header__body {
  color: rgba(255,255,255,0.7);
}

/* ── Card Grid ────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Service Cards ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid rgba(107, 122, 118, 0.15);
  border-top: 3px solid var(--forest-teal);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(18, 83, 76, 0.1);
  transform: translateY(-2px);
}

.service-card__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.2;
}

.service-card__body {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card__link {
  font-weight: 600;
  font-size: 13px;
  color: var(--forest-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.service-card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

/* ── Process Steps ────────────────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(107, 122, 118, 0.18);
}

.process-step:last-child {
  border-bottom: 1px solid rgba(107, 122, 118, 0.18);
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--mist-teal);
  line-height: 1;
  padding-top: 2px;
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step__body {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Feature List (icon + text) ───────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(107, 122, 118, 0.15);
}

.feature-item:last-child {
  border-bottom: 1px solid rgba(107, 122, 118, 0.15);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--mist-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--forest-teal);
  fill: none;
}

.feature-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.feature-item__body {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Callout / Pull Quote ─────────────────────────────────── */
.callout {
  padding: 40px 44px;
  border-left: 4px solid var(--forest-teal);
  background: var(--mist-teal);
}

.callout--amber {
  border-left-color: var(--amber);
  background: var(--amber-light);
}

.callout__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.45;
  color: var(--ink);
}

.callout--amber .callout__quote {
  color: var(--ink);
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial {
  padding: 56px;
  background: var(--amber-light);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--amber);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 40px;
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
}

.testimonial__attribution {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}

.testimonial__attribution strong {
  color: var(--ink);
  font-weight: 700;
}

/* ── Stat / Outcome List ──────────────────────────────────── */
.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcomes-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(107, 122, 118, 0.15);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.outcomes-list li:last-child {
  border-bottom: 1px solid rgba(107, 122, 118, 0.15);
}

.outcomes-list li::before {
  content: '✓';
  color: var(--fern);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-top: 1px solid rgba(107, 122, 118, 0.18);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(107, 122, 118, 0.18);
}

.faq-item__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}

.faq-item__a {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

/* ── Blog / Article Cards ─────────────────────────────────── */
.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(107, 122, 118, 0.15);
  transition: box-shadow var(--transition), transform var(--transition);
}

.article-card:hover {
  box-shadow: 0 6px 28px rgba(28, 43, 40, 0.09);
  transform: translateY(-2px);
}

.article-card__issue {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.article-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.25;
}

.article-card__excerpt {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  flex-grow: 1;
}

.article-card__link {
  font-weight: 600;
  font-size: 13px;
  color: var(--forest-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.article-card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.article-card__link:hover::after {
  transform: translateX(4px);
}

/* ── Article Page ─────────────────────────────────────────── */
.article {
  padding: 80px 0 120px;
}

.article__header {
  margin-bottom: 64px;
}

.article__issue-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.article__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.article__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.article__meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

.article__body {
  max-width: 680px;
}

.article__section {
  margin-bottom: 56px;
}

.article__section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article__section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.article__section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.article__section-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
}

.article__section-body p + p {
  margin-top: 18px;
}

.article__closing {
  margin-top: 72px;
  padding: 40px;
  background: var(--ink);
  color: var(--white);
  border-left: 4px solid var(--amber);
}

.article__closing-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

/* Century Brief article nav */
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 64px;
  margin-top: 64px;
  border-top: 1px solid rgba(107, 122, 118, 0.18);
}

.article-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-nav__dir {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.article-nav__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--forest-teal);
}

/* ── "Who it's for" list ──────────────────────────────────── */
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.who-list__item,
.who-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(107, 122, 118, 0.15);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  list-style: none;
}

.who-list__item:last-child,
.who-list li:last-child {
  border-bottom: 1px solid rgba(107, 122, 118, 0.15);
}

.who-list__item::before,
.who-list li::before {
  content: '—';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Two-column layout ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(107, 122, 118, 0.15);
}

.stat-item {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--forest-teal);
  line-height: 1;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

/* ── Client Logo Bar ──────────────────────────────────────── */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.logo-bar__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
  text-align: center;
}

.logo-bar__item {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.logo-bar__item:hover {
  opacity: 1;
}

.logo-bar__item--mark {
  height: 72px;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--deep-forest);
  color: var(--white);
  text-align: center;
}

.cta-section__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist-teal);
  margin-bottom: 24px;
}

.cta-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-section__body {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer__brand {}

.footer__logo {
  height: 32px;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 100%;
  width: auto;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__nav-group {}

.footer__nav-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__nav-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__email {
  font-size: 13px;
  color: var(--mist-teal);
  font-weight: 500;
}

/* ── Contact Form Section ─────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--deep-forest);
  color: var(--white);
  text-align: center;
}

.contact-form {
  margin-top: 40px;
  text-align: left;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form__row .contact-form__field {
  margin-bottom: 0;
}

.contact-form__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.contact-form__input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.contact-form__input::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-form__input:focus {
  border-color: var(--amber);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ── Century Brief nav bar ────────────────────────────────── */
.brief-nav {
  background: var(--ink);
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.brief-nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brief-nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brief-nav__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.brief-nav__sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.brief-nav__back {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.brief-nav__back::before {
  content: '←';
}

.brief-nav__back:hover {
  color: var(--white);
}

/* ── Phase boxes (StratOp) ────────────────────────────────── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(107, 122, 118, 0.15);
}

.phase-box {
  background: var(--white);
  padding: 40px 32px;
}

.phase-box__num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-teal);
  margin-bottom: 16px;
}

.phase-box__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.phase-box__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── Paterson heritage section ────────────────────────────── */
.heritage-block {
  position: relative;
  padding: 64px;
  background: var(--deep-forest);
  color: var(--white);
  overflow: hidden;
}

.heritage-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--fern) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}

.heritage-block__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist-teal);
  margin-bottom: 20px;
}

.heritage-block__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.heritage-block__body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 680px;
}

.heritage-block__body p + p {
  margin-top: 18px;
}

/* ── About section ────────────────────────────────────────── */
.about-block {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.about-block__content {}

.about-block__photo {
  aspect-ratio: 4/5;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.about-block__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  padding: 24px;
}

/* ── Coaching Approach blocks ─────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist-teal);
}

.approach-box {
  background: var(--white);
  padding: 40px 32px;
}

.approach-box__icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.approach-box__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.approach-box__body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── Utilities ────────────────────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-block {
    grid-template-columns: 1fr;
  }
  .about-block__photo {
    max-width: 480px;
    order: -1;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }
  .container,
  .container--narrow {
    padding: 0 20px;
  }
  .nav {
    padding: 0 20px;
  }
  .nav__links,
  .nav__right .btn {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .hero__title {
    font-size: clamp(30px, 6vw, 48px);
  }
  .hero__sub {
    font-size: 16px;
  }
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .phase-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial {
    padding: 40px 32px;
  }
  .heritage-block {
    padding: 48px 32px;
  }
  .footer__nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-section__title {
    font-size: clamp(26px, 5vw, 36px);
  }
  .article-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .brief-nav {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__nav {
    grid-template-columns: 1fr;
  }
}
