/* ===================================================================
   COHESION — style.css
   The Displacement Operating System
   Palette: dark #1A1A1A · cream #F5F0EB · olive #8C9B76 · text #2C2C2C
   Fonts: Archivo Black (display) · Poppins (body)
   =================================================================== */

:root {
  --dark: #1A1A1A;
  --cream: #F5F0EB;
  --text: #2C2C2C;
  --olive: #8C9B76;
  --olive-dark: #7A8A66;
  --white: #FFFFFF;
  --nav-h: 72px;
  --container: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ====== LOADER ====== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease);
}
.loader.done { opacity: 0; pointer-events: none; }
.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(140, 155, 118, .2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  animation: loaderFill 1.2s var(--ease) forwards;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ====== SCROLL PROGRESS ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--olive);
  z-index: 1001;
  width: 0;
  transition: none;
}

/* ====== SKIP NAV ====== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--olive);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  z-index: 1100;
  font-size: 14px;
}
.skip-nav:focus { top: 8px; }

/* ====== NAVIGATION ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-radius .4s var(--ease), top .4s var(--ease), left .4s var(--ease), right .4s var(--ease);
}
.nav.scrolled {
  background: rgba(26, 26, 26, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(245, 240, 235, .06);
  top: 12px;
  left: 24px;
  right: 24px;
  height: 56px;
  border-radius: 40px;
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(245, 240, 235, .7);
  font-size: 14px;
  font-weight: 500;
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--cream); }
.nav-cta {
  padding: 10px 24px;
  background: var(--olive);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px !important;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--olive-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  color: var(--cream);
  font-size: 20px;
  font-weight: 500;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--olive); }
.mobile-menu .nav-cta {
  margin-top: 12px;
  padding: 14px 36px;
  font-size: 16px !important;
}

/* ====== LAYOUT ====== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(64px, 8vw, 100px) 0; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--text); }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3 { font-family: 'Archivo Black', sans-serif; font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(32px, 5.5vw, 64px); color: var(--white); letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.01em; }
h3 { font-size: clamp(18px, 2vw, 22px); }
.section-dark h2 { color: var(--white); }
.section-cream h2 { color: var(--text); }

.overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: background .3s, transform .2s, box-shadow .3s, border-color .3s;
  min-height: 48px;
}
.btn:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(140, 155, 118, .2);
}
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(245, 240, 235, .08); }

/* ====== REVEAL ANIMATION ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ====== §1 HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 235, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 235, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 20% 50%, rgba(140, 155, 118, .08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 30%, rgba(245, 240, 235, .06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245, 240, 235, .55);
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 32px;
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(245, 240, 235, .8);
  max-width: 620px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.7;
}
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
}
.proof-strip span::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  margin-right: 6px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ====== §2 CRISIS ====== */
.crisis-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.crisis-header h2 { margin-bottom: 8px; }
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.crisis-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid var(--olive);
}
.crisis-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.crisis-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}
.crisis-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(44, 44, 44, .75);
}
.crisis-narrative {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.crisis-narrative p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.crisis-narrative p:last-child {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}

/* ====== §3 VISION ====== */
.vision-header { text-align: center; max-width: 780px; margin: 0 auto 24px; }
.vision-header h2 { margin-bottom: 16px; }
.vision-lead {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .85);
}
.vision-competitor {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .7);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pillar-card {
  background: rgba(245, 240, 235, .04);
  border-left: 4px solid var(--olive);
  border-radius: 8px;
  padding: 32px 28px;
  transition: background .3s;
}
.pillar-card:hover { background: rgba(245, 240, 235, .07); }
.pillar-num {
  font-size: 13px;
  color: var(--olive);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.pillar-card h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 20px;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .75);
}

/* Scaling callout */
.scaling-callout {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  border: 1px solid rgba(140, 155, 118, .25);
  border-radius: 8px;
  text-align: center;
}
.scaling-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .8);
}
.scaling-callout strong { color: var(--cream); font-weight: 600; }

/* Timeline */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 32px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.timeline-step::after {
  content: '';
  position: absolute;
  top: 10px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: rgba(140, 155, 118, .3);
}
.timeline-step:last-child::after { display: none; }
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--olive);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.timeline-step:first-child .timeline-dot {
  box-shadow: 0 0 0 4px rgba(140, 155, 118, .25);
}
.timeline-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 2px;
}
.timeline-sub {
  font-size: 12px;
  color: rgba(245, 240, 235, .5);
  font-weight: 500;
}
.vision-closing {
  text-align: center;
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== §4 IDENTITY ====== */
.identity-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.identity-left p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(44, 44, 44, .85);
}
.identity-pullquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--text);
  border-left: 4px solid var(--olive);
  padding-left: 24px;
}

/* 7-Layer collapse */
.collapse-section { margin-bottom: 20px; }
.collapse-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text);
}
.collapse-list {
  display: grid;
  gap: 10px;
}
.collapse-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(44, 44, 44, .8);
}
.collapse-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--olive);
  flex-shrink: 0;
  width: 20px;
}
.identity-closing {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
}

/* ====== §5 SPRINT ====== */
.sprint-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.sprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.sprint-step {
  background: rgba(245, 240, 235, .04);
  border-radius: 8px;
  padding: 32px 28px;
}
.sprint-step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 12px;
}
.sprint-step h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}
.sprint-step p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 240, 235, .7);
}

/* Pricing card */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  border: 2px solid var(--olive);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(140, 155, 118, .15);
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 20px;
}
.pricing-amount {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-details {
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 12px;
}
.pricing-was {
  font-size: 14px;
  color: rgba(245, 240, 235, .5);
  margin-bottom: 4px;
}
.pricing-was s { text-decoration: line-through; }
.pricing-slots {
  font-size: 14px;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-guarantee {
  font-size: 14px;
  color: rgba(245, 240, 235, .7);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.pricing-card .btn-primary { width: 100%; }

/* ====== §6 EMPLOYERS ====== */
.employers-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.deliverable-card {
  background: var(--white);
  border-top: 4px solid var(--olive);
  border-radius: 8px;
  padding: 28px 24px;
}
.deliverable-card h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}
.deliverable-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(44, 44, 44, .7);
}

/* ROI */
.roi-block {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
}
.roi-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.roi-old {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(44, 44, 44, .35);
  text-decoration: line-through;
}
.roi-arrow { font-size: 24px; color: var(--olive); font-weight: 700; }
.roi-new {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--olive);
}
.roi-caption {
  font-size: 14px;
  color: rgba(44, 44, 44, .65);
  max-width: 500px;
  margin: 0 auto 0;
}
.roi-caption strong { color: var(--text); }

/* Industries */
.industries {
  text-align: center;
  margin-bottom: 48px;
  font-size: 14px;
  color: rgba(44, 44, 44, .6);
}
.industries strong { color: var(--text); font-weight: 600; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto 48px; }
.faq-item {
  border-bottom: 1px solid rgba(44, 44, 44, .1);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
}
.faq-trigger:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  color: var(--olive);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-content p {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 44, 44, .75);
}
.employers-cta { text-align: center; }

/* ====== §7 ABOUT + CONTACT ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-left p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 235, .8);
  margin-bottom: 20px;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 240, 235, .7);
}
.credential-icon {
  width: 16px;
  height: 16px;
  color: var(--olive);
  flex-shrink: 0;
}

/* Founder card */
.founder-card {
  background: rgba(245, 240, 235, .04);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.founder-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 13px;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 4px;
}
.founder-bg {
  font-size: 13px;
  color: rgba(245, 240, 235, .5);
  margin-bottom: 16px;
}
.founder-quote {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .75);
  font-style: italic;
  border-left: 3px solid var(--olive);
  padding-left: 16px;
}
.about-facts {
  font-size: 13px;
  color: rgba(245, 240, 235, .5);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.about-facts span { white-space: nowrap; }

/* Contact right */
.contact-right h2 { color: var(--white); margin-bottom: 12px; }
.contact-intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 235, .7);
  margin-bottom: 24px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
}
.contact-info a {
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
}
.contact-info a:hover { color: var(--olive); }
.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 235, .6);
}
.contact-icon { width: 16px; height: 16px; color: var(--olive); flex-shrink: 0; }

/* Contact form */
.contact-form { margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 240, 235, .6);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(245, 240, 235, .06);
  border: 1.5px solid rgba(245, 240, 235, .12);
  border-radius: 6px;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245, 240, 235, .3); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-form .btn-primary { width: 100%; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--olive);
  font-weight: 600;
  font-size: 15px;
}
.form-success.show { display: block; }

/* Calendly embed */
.calendly-wrap {
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  background: var(--cream);
  padding: 4px;
}
.identity-header {
  text-align: center;
  margin-bottom: 32px;
}
.identity-header h2 { margin-bottom: 0; }
/* Simplified identity */
.identity-simple {
  max-width: 740px;
  margin: 0 auto 32px;
  text-align: center;
}
.identity-simple p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(44, 44, 44, .85);
}
.identity-pullquote-centered {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.identity-pullquote-centered blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: var(--text);
}
.section-cta {
  text-align: center;
  margin-top: 24px;
}
.calendly-inline-widget { min-width: 280px; height: 660px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(245, 240, 235, .06);
  padding: 32px 0;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(245, 240, 235, .06);
}
.footer-nav a {
  color: rgba(245, 240, 235, .5);
  font-size: 14px;
  font-weight: 500;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: var(--white);
}
.footer-tagline {
  font-size: 12px;
  color: rgba(245, 240, 235, .4);
  font-weight: 500;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.footer-links a {
  color: rgba(245, 240, 235, .4);
  transition: color .3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 235, .3);
}

/* ====== BACK TO TOP ====== */
.btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--olive);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .3s;
  pointer-events: none;
}
.btt.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover { background: var(--olive-dark); }
.btt svg { width: 20px; height: 20px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav.scrolled { left: 12px; right: 12px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: calc(100vh - 40px); min-height: calc(100svh - 40px); }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .proof-strip { gap: 12px; font-size: 13px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .crisis-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .sprint-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .identity-grid { grid-template-columns: 1fr; gap: 32px; }
  .identity-pullquote { font-size: 20px; }
  .deliverable-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .roi-vs { gap: 16px; }
  .timeline { flex-direction: column; gap: 0; }
  .timeline-step { flex-direction: row; gap: 16px; text-align: left; padding: 12px 0; }
  .timeline-step::after {
    top: auto;
    left: 9px;
    width: 2px;
    height: calc(100% - 20px);
    top: calc(50% + 14px);
  }
  .timeline-dot { margin-bottom: 0; }
  .timeline-label { margin-bottom: 0; }
  .pricing-card { padding: 32px 24px; }
  .about-grid { gap: 40px; }
  .btt { bottom: 20px; right: 20px; }
  section { padding: clamp(48px, 8vw, 80px) 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-sub { font-size: 15px; }
  .proof-strip { flex-direction: column; gap: 8px; }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
